comparison themes/leftbar/tags.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 Tagged <!-- tmpl_var name='tagname' --></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='tagname' escape='html' -->.rss" type="application/rss+xml">
8 </head>
9 <body>
10
11 <div class="title">
12 <h1><!-- tmpl_if name='blog_title' -->
13 <a href="<!-- tmpl_var name='top' -->"><!-- tmpl_var name='blog_title' --></a>
14 <!-- tmpl_else -->
15 Untitled Blog
16 <!-- /tmpl_if -->
17 </h1>
18 <!-- tmpl_if name='blog_subtitle' -->
19 <h2><!-- tmpl_var name='blog_subtitle' --></h2>
20 <!-- /tmpl_if -->
21 </div>
22
23 <p>Entries tagged "<!-- tmpl_var name='tagname' escape='html' -->".</p>
24
25
26
27 <!-- tmpl_loop name='entries' -->
28 <div class="entry">
29 <div class="title">
30 <a href="<!-- tmpl_var name='top' --><!-- tmpl_var name='link' escape='html' -->"><!-- tmpl_var name='title' --></a>
31 </div>
32 <div class="date">
33 <!-- tmpl_var name='date' -->
34 </div>
35
36 <div class="body">
37 <!-- tmpl_var name='body' -->
38 </div>
39 <div class="tags">
40 <!-- tmpl_if name='comment_count' -->
41 <span class="comments">
42 <!-- tmpl_var name='comment_count' --> comments.
43 </span>
44 <!-- /tmpl_if -->
45
46 <!-- tmpl_if name='tags' -->
47 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 -->
48 <!-- /tmpl_if -->
49 </div>
50 </div>
51 <div class="padding"></div>
52 <!-- /tmpl_loop -->
53 <p style="text-align: right;"><a href="<!-- tmpl_var name='tagname' escape='html' -->.rss"><img src="<!-- tmpl_var name='top' -->xml.gif" alt="RSS Feed" width="36" height="14"></a></p>
54
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>