blob: fb2afa0459913d5d9ada15fdf6c6118c3c8de50a (
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>
|