From 6331805b90cf2214dfde541473cb6fecabfbd577 Mon Sep 17 00:00:00 2001
From: Bud Parr <budparr@gmail.com>
Date: Fri, 14 Apr 2017 03:01:23 +0000
Subject: [PATCH] clean up layouts

---
 layouts/index.html |   18 ++++++++++++------
 1 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/layouts/index.html b/layouts/index.html
index 8ba9f56..26c605f 100755
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -3,21 +3,27 @@
   <main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy mid-gray">
     {{ .Content }}
   </main>
-  <div class="pa3 pa4-ns">
+
+
+  <div class="flex pa3 pa4-ns w-70 center">
     {{ $section := where .Data.Pages "Section" "article" }}
 
-    <section class="flex-ns flex-wrap justify-around">
+    <section class="w-60 bg-white">
       {{ range sort (first 1 $section) "Date" "desc"  }}
-        {{ .Render "summary" }}
-        {{ end }}
+        <h1>{{ .Title }}</h1>
+      {{ end }}
     </section>
 
-    <section class="flex-ns flex-wrap justify-around">
+    <section class="w-30 ph4">
       {{ range sort (first 2 (after 1 $section)) "Date" "desc"  }}
-        {{ .Render "summary" }}
+        <h2 class="f4">{{ .Title }}</h2>
         {{ end }}
     </section>
 
 
     </div>
+
+
+
+
 {{ end }}

--
Gitblit v1.10.0