comparison themes/blocky/entry.template @ 25:9ab9589e05a6

2007-08-16 12:45:30 by steve Added.
author steve
date Thu, 16 Aug 2007 12:45:30 +0000
parents
children acbe466b3c13
comparison
equal deleted inserted replaced
24:4a936d95aca5 25:9ab9589e05a6
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>Blog: <!-- tmpl_var name='title' --></title>
6 <link rel="stylesheet" type="text/css" media="screen" href="<!-- tmpl_var name='url_prefix' -->style.css">
7 </head>
8 <body>
9
10 <div class="title">
11 <h1><!-- tmpl_if name='blog_title' -->
12 <a href="<!-- tmpl_var name='url_prefix' -->"><!-- 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 <!-- Blog is in a large table -->
23 <table width="100%">
24 <tr><td valign="top">
25
26
27 <fieldset>
28 <legend><!-- tmpl_var name='title' --></legend>
29 <p style="text-align: right;"><!-- tmpl_var name='date' --></p
30 <div class="body"><!-- tmpl_var name='body' --></div>
31 <!-- tmpl_if name='tags' -->
32 <div class="tags">Tags: <!-- tmpl_loop name='tags' --><a href="<!-- tmpl_var name='url_prefix' -->tags/<!-- tmpl_var name='tag' -->"><!-- tmpl_var name='tag' --></a><!-- tmpl_if name="__last__" -->.<!-- tmpl_else -->, <!-- /tmpl_if --><!-- /tmpl_loop --></div>
33 <!-- /tmpl_if -->
34 </fieldset>
35
36 </td>
37 <td width="20%" valign="top">
38 <!-- tmpl_if name='datecloud' -->
39 <fieldset><legend>Archive</legend>
40 <ul>
41 <!-- tmpl_loop name='datecloud' -->
42 <li><!-- tmpl_var name='year' -->
43 <ul>
44 <!-- tmpl_loop name='months' -->
45 <li><a href="<!-- tmpl_var name='url_prefix' -->archive/<!-- tmpl_var name='year' -->/<!-- tmpl_var name='month' -->/"><!-- tmpl_var name='month' --> (<!-- tmpl_var name='count' -->)</a></li>
46 <!-- /tmpl_loop -->
47 </ul></li>
48 <!-- /tmpl_loop -->
49 </ul>
50 </fieldset>
51 <!-- /tmpl_if name='datecloud' -->
52
53 <!-- tmpl_if name='tagcloud' -->
54 <fieldset>
55 <legend>Tags</legend>
56 <!-- tmpl_loop name='tagcloud' -->
57 <span style="font-size: <!-- tmpl_var name='size' -->px"><a href="<!-- tmpl_var name='url_prefix' -->tags/<!-- tmpl_var name='tag' -->"><!-- tmpl_var name='tag' --></a><!-- tmpl_if name="__last__" -->.<!-- tmpl_else -->, <!-- /tmpl_if --></span>
58 <!-- /tmpl_loop -->
59 </fieldset>
60 <!-- /tmpl_if -->
61
62 </td></tr></table>
63 </body>
64 </html>