5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-16 19:19:36 +00:00
yggdrasil-network.github.io/blog.md
2021-07-25 15:04:27 +01:00

23 lines
562 B
Markdown

---
sitemap: true
---
# Blog
You can subscribe to our blog [using RSS](https://yggdrasil-network.github.io/feed.xml).
{% for post in site.posts %}
{% if post.unlisted != true %}
<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>
{% endif %}
{% endfor %}