Example Main Template
<html>
<head>
<title><$BlogTitle$></title>
</head>
<body>
<h1><$BlogTitle$></h1>
<$BlogDescription$>
<hr>
<p>
<BlogEntry> <!-- Entries Begin -->
<DayHeader>
<h3><$DayHeaderDate$></h3>
</DayHeader>
<p></p>
<a name = "<$EntryID$>"></a>
<EntryTitle>
<div><b><$EntryTitle$></b></div><br>
</EntryTitle>
<div>
<$EntryBody$>
</div>
<br>
<div> <!-- entry footer -->
Categories -
<EntryCategories>
::<a
href="<$CategoryLink$>"><$CategoryName$></a>::
</EntryCategories><br>
<EntryModifiedDate>
<i>Edited on: <$EntryModifiedDate$></i><br>
</EntryModifiedDate>
posted at
<a
href="<$EntryArchivePage$>#<$EntryID$>"><$EntryTime$></a>
<a
href="mailto:<$EntryAuthorEmail$>"><$EntryAuthor$></a><br>
---
</div>
<DayFooter>
<hr>
</DayFooter>
</BlogEntry> <!-- Blog entries end -->
<p>
<a href="<$IndexPageLink$>">Archives</a>
</p>
</body>
</html>
Example Archive
Template
<html>
<head>
<title><$BlogTitle$> Archives</title>
</head>
<body>
<h1><$BlogTitle$> <$PageTitle$></h1>
<$BlogDescription$>
<hr>
<p>
<BlogEntry> <!-- Entries Begin -->
<DayHeader>
<h3><$DayHeaderDate$></h3>
</DayHeader>
<p></p>
<a name = "<$EntryID$>"></a>
<EntryTitle>
<div><b><$EntryTitle$></b></div><br>
</EntryTitle>
<div>
<$EntryBody$>
</div>
<br>
<div> <!-- entry footer -->
Categories -
<EntryCategories>
::<a
href="<$CategoryLink$>"><$CategoryName$></a>::
</EntryCategories><br>
<EntryModifiedDate>
<i>Edited on: <$EntryModifiedDate$></i><br>
</EntryModifiedDate>
posted at
<a
href="<$EntryArchivePage$>#<$EntryID$>"><$EntryTime$></a>
<a
href="mailto:<$EntryAuthorEmail$>"><$EntryAuthor$></a><br>
---
</div>
<DayFooter>
<hr>
</DayFooter>
</BlogEntry> <!-- Blog entries end -->
<p>
<a href="<$FrontPageLink$>">Home</a> | <a
href="<$IndexPageLink$>">Archives</a>
</p>
</body>
</html>
Example
Index Template
<html>
<head>
<title><$BlogTitle$> Index</title>
</head>
<body>
<h1><$BlogTitle$> Index</h1>
<$BlogDescription$>
<hr>
<p>
<!-- Index Begin -->
<div>
Archives
</div>
<ul>
<ArchiveList>
<li><a
href="<$ArchiveLink$>"><$ArchiveName$></a></li>
</ArchiveList>
</ul>
<br><br>
<div>
Categories
</div>
<ul>
<CategoryList>
<li><a
href="<$CategoryLink$>"><$CategoryName$></a></li>
</CategoryList>
</ul>
<p>
<a href="<$FrontPageLink$>">Home</a>
</p>
</body>
</html>
<<Back