Add posts page to list all.
This commit is contained in:
parent
590218f27a
commit
cf66d16c3d
2 changed files with 9 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
|||
<a href="/">fnordig</a>
|
||||
</h1>
|
||||
<ul>
|
||||
<li><a href="/posts/">posts</a></li>
|
||||
<li><a href="/about/">about</a></li>
|
||||
<li><a href="/feed.xml">feed</a></li>
|
||||
<li>| links:</li>
|
||||
|
|
8
posts.md
Normal file
8
posts.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: post
|
||||
title: posts
|
||||
---
|
||||
|
||||
{% for post in site.posts %}
|
||||
* {{post.date | date_to_string}}: [{{post.title}}]({{post.url}})
|
||||
{% endfor %}
|
Loading…
Add table
Reference in a new issue