blob: a35ef2a1ac28236d536fafef7d23fa31a7d7dc5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% include header.html %}
<body>
<div id="website-container">
{% include nav.html %}
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_long_string }}</span> <a href="{{ post.url | prepend: site.baseurl}}" title="{{ post.title }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% include footer.html %}
</body>
</html>
|