4
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2025-06-26 22:19:26 +00:00

Update blog listing

This commit is contained in:
Neil Alexander
2018-07-13 12:52:44 +01:00
parent 187ee5840d
commit dff8053b88
2 changed files with 10 additions and 5 deletions

View File

@ -3,11 +3,12 @@
{% for post in site.posts %}
<div class='blogpost'>
<div id='date'>
<div id='day'>{{ page.date | date: "%-d" }}</div>
<div id='month'>{{ page.date | date: "%B %Y" }}</div>
<div id='day'>{{ post.date | date: "%-d" }}</div>
<div id='month'>{{ post.date | date: "%B %Y" }}</div>
</div>
<div id='overview'>
<a href="{{ post.url }}">{{ post.title }}</a>
<div id='title'><a href="{{ post.url }}">{{ post.title }}</a></div>
<div id='excerpt'>{{ post.excerpt }}</div>
</div>
</div>
{% endfor %}