moving templates
This commit is contained in:
parent
bbf3fb9550
commit
a23206c004
4 changed files with 5 additions and 9 deletions
|
@ -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).
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
Here you can find all my previous posts:
|
||||
$partial("templates/post-list.html")$
|
||||
$partial("templates/post-list.md")$
|
|
@ -1,7 +0,0 @@
|
|||
<ul>
|
||||
$for(posts)$
|
||||
<li>
|
||||
<a href="$url$">$title$</a> - $date$
|
||||
</li>
|
||||
$endfor$
|
||||
</ul>
|
3
templates/post-list.md
Normal file
3
templates/post-list.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
$for(posts)$
|
||||
* [$title$]($url$) - $date$
|
||||
$endfor$
|
Loading…
Reference in a new issue