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

23 lines
562 B
Markdown
Raw Permalink Normal View History

2018-07-23 16:39:34 +00:00
---
sitemap: true
---
2018-07-13 08:14:14 +00:00
# Blog
2018-07-13 12:43:58 +00:00
You can subscribe to our blog [using RSS](https://yggdrasil-network.github.io/feed.xml).
2018-07-13 11:50:27 +00:00
{% for post in site.posts %}
2021-07-25 14:04:27 +00:00
{% if post.unlisted != true %}
2018-07-13 11:50:27 +00:00
<div class='blogpost'>
<div id='date'>
2018-07-13 11:52:44 +00:00
<div id='day'>{{ post.date | date: "%-d" }}</div>
<div id='month'>{{ post.date | date: "%B %Y" }}</div>
2018-07-13 11:50:27 +00:00
</div>
<div id='overview'>
2018-07-13 11:52:44 +00:00
<div id='title'><a href="{{ post.url }}">{{ post.title }}</a></div>
2018-07-13 12:04:47 +00:00
<div id='excerpt'>{{ post.excerpt | strip_html }}</div>
2018-07-13 11:50:27 +00:00
</div>
</div>
2021-07-25 14:04:27 +00:00
{% endif %}
2018-07-13 11:50:27 +00:00
{% endfor %}