openneo-blog/index.html

18 lines
342 B
HTML
Raw Permalink Normal View History

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