moving templates

This commit is contained in:
nek0 2017-11-10 17:17:33 +01:00
parent bbf3fb9550
commit a23206c004
4 changed files with 5 additions and 9 deletions

View File

@ -12,6 +12,6 @@ welcome. Meet us at our Assembly at 34C3.
The latest posts here are
$partial("templates/post-list.html")$
$partial("templates/post-list.md")$
...and there are even more in the [archive](/archive.html).

View File

@ -1,2 +1,2 @@
Here you can find all my previous posts:
$partial("templates/post-list.html")$
$partial("templates/post-list.md")$

View File

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

3
templates/post-list.md Normal file
View File

@ -0,0 +1,3 @@
$for(posts)$
* [$title$]($url$) - $date$
$endfor$