Yak shave the design a bit
[styx.blog] / core / templates / core / post_detail.html
index a539a14..c8bf49a 100644 (file)
@@ -3,13 +3,15 @@
 {% block content %}
 
 <article>
-  <h1>{{ object.title }}</h1>
+  <header>
+    <h1>{{ object.title }}</h1>
 
-  <time>{{ post.publication_utc|date:'Y-m-d H:i' }}</time>
+    <time>{{ post.publication_utc|date:'l, F j, Y' }}</time>
+  </header>
 
-  <div class='body'>
+  <main class='body'>
     {{ object.body_html }}
-  </div>
+  </main>
 </article>
 
 {% endblock %}