5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-11-12 23:40:26 +00:00
yggdrasil-network.github.io/blog.md
2018-07-13 13:43:58 +01:00

17 lines
492 B
Markdown

# Blog
You can subscribe to our blog [using RSS](https://yggdrasil-network.github.io/feed.xml).
{% for post in site.posts %}
<div class='blogpost'>
<div id='date'>
<div id='day'>{{ post.date | date: "%-d" }}</div>
<div id='month'>{{ post.date | date: "%B %Y" }}</div>
</div>
<div id='overview'>
<div id='title'><a href="{{ post.url }}">{{ post.title }}</a></div>
<div id='excerpt'>{{ post.excerpt | strip_html }}</div>
</div>
</div>
{% endfor %}