chiark / gitweb /
Fiddle with menu font size
[disorder] / templates / new.tmpl
CommitLineData
78efa64e
RK
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2<!--
3This file is part of DisOrder.
8f9616f1 4Copyright (C) 2004-2008 Richard Kettlewell
78efa64e
RK
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19USA
20-->
21<html>
22 <head>
0d0253c9 23@stdhead{new}
78efa64e
RK
24 </head>
25 <body>
0d0253c9 26@stdmenu{new}
5fb0c1a0 27 <h1>@label{new.title}</h1>
78efa64e 28
5fb0c1a0
RK
29@# Only display the table if there is something to put in it
30@if{@isnew}{
78efa64e
RK
31 <table class=new>
32 <tr class=headings>
5fb0c1a0
RK
33 <th class=artist>@label{heading.artist}</th>
34 <th class=album>@label{heading.album}</th>
35 <th class=title>@label{heading.title}</th>
36 <th class=length>@label{heading.length}</th>
d7ce365e 37@right{prefs}{
5fb0c1a0 38 <th class=button>&nbsp;</th>}
78efa64e
RK
39 </tr>
40 @new{
5fb0c1a0
RK
41 <tr class=@parity>
42 <td class=artist>@martist{new}{@track}</td>
43 <td class=album>@malbum{new}{@track}</td>
e7ce7665
RK
44 <td class=title>@mtitleplay{new}{@track}</td>
45 <td class=length>@length{@track}</td>
5fb0c1a0
RK
46 @right{prefs}{
47 <td class=imgbutton>
48 <a class=imgbutton
02eaa49d 49 href="@url?action=prefs&#38;track=@urlquote{@track}">
5fb0c1a0
RK
50 <img class=button src="@image{edit}"
51 title="@label{choose.prefsverbose}"
52 alt="@label{choose.prefs}">
53 </a>
54 </td>
55 </tr>}
56 }
78efa64e 57 </table>
5fb0c1a0 58}
78efa64e 59
0d0253c9 60@credits
78efa64e
RK
61 </body>
62</html>
0d0253c9 63@discard{
78efa64e
RK
64Local variables:
65mode:sgml
66sgml-always-quote-attributes:nil
67sgml-indent-step:1
68sgml-indent-data:t
0d0253c9
RK
69indent-tabs-mode:nil
70fill-column:79
78efa64e 71End:
0d0253c9 72}@#