blob: 4e5d272be8b75da88e6e441e2772a34af8ecb481 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<!-- BEGIN: header -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>{title}</title>
<base href="{base}" />
<style type="text/css" media="all">
@import "themes/xtemplate/xtemplate.css";
</style>
{head}
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" class="header">
<tr>
<td colspan="2" class="menu">
<span id="links">
<div id="secondary">
{secondary_links}
<!-- BEGIN: search_box -->
<form action="{search_url}" method="post">
<input class="keys" type="text" size="50" value="" name="keys" />
<input type="submit" value="{search_button_text}" />
</form>
<!-- END: search_box -->
</div>
<div id="primary">{primary_links}</div>
</span>
<span id="logo">
<a href="./"><img src="themes/xtemplate/images/druplicon.gif" alt="" /></a>
</span>
</td>
</tr>
<tr>
<td valign="top" width="100%">
<!-- BEGIN: message -->
<div id="message">{message}</div>
<!-- END: message -->
<div id="main">
<!-- END: header -->
<!-- BEGIN: node -->
<div class="node">
<div class="title">{title}</div>
<span class="author">Submitted by {author} on {date}.</span>
<span class="taxonomy">{taxonomy}</span>
<div class="content">{content}</div>
<div class="links">» {links}</div>
</div>
<!-- END: node -->
<!-- BEGIN: comment_new -->
<div class="comment">
<span class="new">new</span>
<div class="title">{title}</div>
<div class="author">Posted by {author} on {date}.</div>
<div class="content">{content}</div>
<div class="links">» {links}</div>
</div>
<!-- END: comment_new -->
<!-- BEGIN: comment_old -->
<div class="comment">
<div class="title">{title}</div>
<div class="author">Posted by {author} on {date}.</div>
<div class="content">{content}</div>
<div class="links">» {links}</div>
</div>
<!-- END: comment_old -->
<!-- BEGIN: box -->
<div class="box">
<div class="title">{subject}</div>
<div class="content">{content}</div>
</div>
<!-- END: box -->
<!-- BEGIN: block -->
<div class="block">
<div class="title">{subject}</div>
<div class="content">{content}</div>
</div>
<!-- END: block -->
<!-- BEGIN: footer -->
</div><!-- main -->
</td>
<td valign="top" id="sidebar">
{blocks}
</td>
</tr>
</table>
<div id="footer">
{footer}
</div>
</body>
</html>
<!-- END: footer -->
|