20 lines
381 B
HTML
20 lines
381 B
HTML
---
|
|
layout: default
|
|
title: Blog
|
|
---
|
|
<h1>Latest Posts</h1>
|
|
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
<li>
|
|
<h2>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
<span style="font-size: 0.6em; font-style: italic; margin-left: 0.5rem;">
|
|
{{ post.date | date: "%B %d, %Y" }}
|
|
</span>
|
|
</h2>
|
|
{{ post.excerpt }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|