comparison themes/leftbar/entry.template @ 225:ea9cb3e9020b

New theme.
author Steve Kemp <steve@steve.org.uk>
date Fri, 02 May 2008 20:57:12 +0100
parents
children
comparison
equal deleted inserted replaced
224:9780818e4f2f 225:ea9cb3e9020b
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html>
4 <head>
5 <title><!-- tmpl_var name='blog_title' -->: <!-- tmpl_var name='title' --></title>
6 <link rel="stylesheet" type="text/css" media="screen" href="<!-- tmpl_var name='top' -->style.css">
7 </head>
8 <body>
9
10 <div class="title">
11 <h1><!-- tmpl_if name='blog_title' -->
12 <a href="<!-- tmpl_var name='top' -->"><!-- tmpl_var name='blog_title' --></a>
13 <!-- tmpl_else -->
14 Untitled Blog
15 <!-- /tmpl_if -->
16 </h1>
17 <!-- tmpl_if name='blog_subtitle' -->
18 <h2><!-- tmpl_var name='blog_subtitle' --></h2>
19 <!-- /tmpl_if -->
20 </div>
21
22
23 <div class="entry">
24 <div class="title"><!-- tmpl_var name='title' --></div>
25 <div class="date"><!-- tmpl_var name='date' --></div>
26 <div class="body"><!-- tmpl_var name='body' --></div>
27 <!-- tmpl_if name='tags' -->
28 <div class="tags">Tags: <!-- tmpl_loop name='tags' --><a href="<!-- tmpl_var name='top' -->tags/<!-- tmpl_var name='tag' escape='html' -->"><!-- tmpl_var name='tag' escape='html' --></a><!-- tmpl_if name="__last__" -->.<!-- tmpl_else -->, <!-- /tmpl_if --><!-- /tmpl_loop --></div>
29 <!-- /tmpl_if -->
30 </div>
31
32 <!-- tmpl_include name="comment-loop.inc" -->
33 <!-- tmpl_include name="comment-form.inc" -->
34
35 <div id="sidebar">
36 <!-- tmpl_if name='datecloud' -->
37 <h2>Archive</h2>
38 <ul>
39 <!-- tmpl_loop name='datecloud' -->
40 <li><!-- tmpl_var name='year' -->
41 <ul>
42 <!-- tmpl_loop name='months' -->
43 <li><a href="<!-- tmpl_var name='top' -->archive/<!-- tmpl_var name='year' -->/<!-- tmpl_var name='month' -->/"><!-- tmpl_var name='month_name' --> (<!-- tmpl_var name='count' -->)</a></li>
44 <!-- /tmpl_loop -->
45 </ul></li>
46 <!-- /tmpl_loop -->
47 </ul>
48 <!-- /tmpl_if name='datecloud' -->
49
50 <!-- tmpl_if name='tagcloud' -->
51 <h2>Tags</h2>
52 <ul>
53 <!-- tmpl_loop name='tagcloud' -->
54 <li><a href="<!-- tmpl_var name='top' -->tags/<!-- tmpl_var name='tag' escape='html' -->"><!-- tmpl_var name='tag' escape='html' --> (<!-- tmpl_var name='count' -->)</a></li>
55 <!-- /tmpl_loop -->
56 </ul>
57 <!-- /tmpl_if -->
58 </div>
59 </body>
60 </html>