Initial commit

This commit is contained in:
2018-09-20 20:58:27 +03:00
commit 9ff22271d4
12 changed files with 594 additions and 0 deletions

7
templates/post-list.html Normal file
View File

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