13 lines
232 B
HTML
13 lines
232 B
HTML
---
|
|
layout: default
|
|
title: Blog
|
|
---
|
|
<h1>Latest Posts</h1>
|
|
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
<li>
|
|
<h3>{{ post.date }} <a href="{{ '/website' | append: post.url }}">{{ post.title }}</a></h3>
|
|
</li>
|
|
{% endfor %}
|
|
</ul> |