From 8f4c3b571d10049b4f80f1fe5347abdd7402c8b3 Mon Sep 17 00:00:00 2001
From: Bud Parr <budparr@gmail.com>
Date: Tue, 02 May 2017 12:16:53 +0000
Subject: [PATCH] use better class names

---
 layouts/_default/single.html |   22 ++++++++++++----------
 1 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 14229c8..1c74584 100755
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -2,18 +2,20 @@
 {{ define "main" }}
   <div class="flex-l mt2 mw8 center">
     <article class="center cf pv5 ph3 ph4-ns mw7">
-      <p class="f6 b helvetica tracked">
-        {{ humanize .Section | upper  }}
-      </p>
-      <h1 class="f1">
-        {{ .Title }}
-      </h1>
-      <section class="nested-copy-line-height lh-copy f4 nested-links nested-img mid-gray">
+      <header>
+        <p class="f6 b helvetica tracked">
+          {{ humanize .Section | upper  }}
+        </p>
+        <h1 class="f1">
+          {{ .Title }}
+        </h1>
+      </header>
+      <div class="nested-copy-line-height lh-copy f4 nested-links nested-img mid-gray">
         {{ .Content }}
-      </section>
+      </div>
     </article>
-    <div class="ph3 mt2 mt6-ns">
+    <aside class="ph3 mt2 mt6-ns">
       {{ partial "menu-contextual.html" . }}
-    </div>
+    </aside>
   </div>
 {{ end }}

--
Gitblit v1.10.0