comparison themes/leftbar/month.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' -->: entries from <!-- tmpl_var name='month_name' --> <!-- tmpl_var name='year' --></title>
6 <link rel="stylesheet" type="text/css" media="screen" href="<!-- tmpl_var name='top' -->style.css">
7 <link rel="alternate" title="RSS Feed" href="<!-- tmpl_var name='month' escape='html' -->.rss" type="application/rss+xml">
8 </head>
9 <body>
10 <!-- XML FEED -->
11
12 <div class="title">
13 <h1><!-- tmpl_if name='blog_title' -->
14 <a href="<!-- tmpl_var name='top' -->"><!-- tmpl_var name='blog_title' --></a>
15 <!-- tmpl_else -->
16 Untitled Blog
17 <!-- /tmpl_if -->
18 </h1>
19 <!-- tmpl_if name='blog_subtitle' -->
20 <h2><!-- tmpl_var name='blog_subtitle' --></h2>
21 <!-- /tmpl_if -->
22 </div>
23
24 <p>Entries from <!-- tmpl_var name='month_name' escape='html' --> <!-- tmpl_var name='year' escape='html' -->.</p>
25
26 <!-- tmpl_loop name='entries' -->
27 <div class="entry">
28 <div class="title">
29 <a href="<!-- tmpl_var name='top' --><!-- tmpl_var name='link' escape='html' -->"><!-- tmpl_var name='title' --></a>
30 </div>
31 <div class="date">
32 <!-- tmpl_var name='date' -->
33 </div>
34
35 <div class="body">
36 <!-- tmpl_var name='body' -->
37 </div>
38 <div class="tags">
39 <!-- tmpl_if name='comment_count' -->
40 <span class="comments">
41 <!-- tmpl_var name='comment_count' --> comments.
42 </span>
43 <!-- /tmpl_if -->
44
45 <!-- tmpl_if name='tags' -->
46 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 -->
47 <!-- tmpl_else -->
48 No tags
49 <!-- /tmpl_if -->
50 </div>
51 </div>
52 <div class="padding"></div>
53 <!-- /tmpl_loop -->
54 <p style="text-align: right;"><a href="<!-- tmpl_var name='month' escape='html' -->.rss"><img src="<!-- tmpl_var name='top' -->xml.gif" alt="RSS Feed" width="36" height="14"></a></p>
55
56
57
58 <div id="sidebar">
59 <!-- tmpl_if name='datecloud' -->
60 <h2>Archive</h2>
61 <ul>
62 <!-- tmpl_loop name='datecloud' -->
63 <li><!-- tmpl_var name='year' -->
64 <ul>
65 <!-- tmpl_loop name='months' -->
66 <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>
67 <!-- /tmpl_loop -->
68 </ul></li>
69 <!-- /tmpl_loop -->
70 </ul>
71 <!-- /tmpl_if name='datecloud' -->
72
73 <!-- tmpl_if name='tagcloud' -->
74 <h2>Tags</h2>
75 <ul>
76 <!-- tmpl_loop name='tagcloud' -->
77 <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>
78 <!-- /tmpl_loop -->
79 </ul>
80 <!-- /tmpl_if -->
81 </div>
82 </body>
83 </html>