2024-09-11 17:15:59 -07:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: "Home"
|
|
|
|
---
|
|
|
|
|
2024-09-11 20:37:18 -07:00
|
|
|
<ul class="posts">
|
2024-09-11 17:15:59 -07:00
|
|
|
{% 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 }}
|
2024-09-11 17:15:59 -07:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|