summaryrefslogtreecommitdiff
path: root/archives.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--archives.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/archives.html b/archives.html
index 9dfb73d..9d3389f 100644
--- a/archives.html
+++ b/archives.html
@@ -2,11 +2,11 @@
layout: default
title: Archives
---
-<div id="page">
-<h2>archive</h2>
-<ul>
-{% for post in site.posts %}
-<li><a href="{{ post.url }}">{{ post.title }}</a> <abbr>{{ post.date | date_to_string }}</abbr></li>
-{% endfor %}
-</ul>
+<div id="content">
+ <div id="page">
+ <h1>Archives</h1>
+ {% for post in site.posts %}
+ <h2><a href="{{ post.url }}">{{ post.title }}</a> <abbr>{{ post.date | date_to_string }}</abbr></h2>
+ {% endfor %}
+ </div>
</div>