Bit more prodding

This commit is contained in:
Dhananjay Balan
2019-08-03 18:16:25 +02:00
parent 7b8e412f33
commit a910f0ae63
5 changed files with 28 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
<article>
<h1>Archives</h1>
<h1>Archive</h1>
$partial("templates/post-list.html")$
</article>

View File

@@ -11,9 +11,8 @@
<body>
<header>
<div class="header">
<a id="title" href="/">BINARY STROLLS</a>
<a id="archive" href="/archive.html">Archive</a>
<a id="abount" href="https://dbalan.in">About</a>
<div id="title"><a href="/">BINARY STROLLS</a></div>
<div id="nav"><a href="/archive.html">Archive</a> <a href="https://dbalan.in">About</a></div>
</div>
</header>
<section>

View File

@@ -1,7 +1,7 @@
<ul>
$for(posts)$
<li>
<a href="$url$">$title$</a> - $date$
</li>
<li>
<a href="$url$">$title$</a> - $date$
</li>
$endfor$
</ul>