openneo-blog/index.html

17 lines
342 B
HTML

---
layout: default
title: "Home"
---
<ul class="posts">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
{% if post.date %}
<time datetime="{{ post.date | date_to_xmlschema }}"
>{{ post.date | date_to_string: "ordinal", "US" }}</time
>
{% endif %} {{ post.excerpt }}
</li>
{% endfor %}
</ul>