mirror of
https://github.com/cwinfo/yggdrasil-network.github.io.git
synced 2024-11-09 16:50:31 +00:00
23 lines
562 B
Markdown
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 %}
|