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
|
<!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" dir="ltr">
<head>
<title>Blog: <!-- tmpl_var name='title' --></title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" media="screen" href="<!-- tmpl_var name='top' -->style.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<!-- tmpl_var name='top' -->vim.css" />
<!-- tmpl_unless name='no_comments' -->
<link rel="alternate" title="Comment Feed" href="<!-- tmpl_var name='basename' -->.rss" type="application/rss+xml" />
<!-- /tmpl_unless -->
</head>
<body>
<!-- tmpl_include name='header.inc' -->
<!-- Blog is in a large table -->
<table width="100%">
<tr><td valign="top">
<fieldset>
<legend><!-- tmpl_var name='title' --></legend>
<div class="body"><!-- tmpl_var name='body' --></div>
<table width="100%">
<tr><td>
<!-- tmpl_if name='tags' -->
<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>
<!-- /tmpl_if -->
</td><td align="right"><!-- tmpl_var name='date' --></td></tr></table>
</fieldset>
<!-- tmpl_include name="comment-loop.inc" -->
<!-- tmpl_include name="comment-form.inc" -->
</td>
<td width="20%" valign="top">
<!-- tmpl_include name='sidebar.inc' -->
</td>
</tr>
</table>
<!-- tmpl_include name='footer.inc' -->
</body>
</html>
|