From 426676fd3c4b8f095d455d5a8748051d0b9e9f2b Mon Sep 17 00:00:00 2001
From: Bud Parr <budparr@gmail.com>
Date: Wed, 12 Apr 2017 02:22:06 +0000
Subject: [PATCH] page layout [wip]

---
 layouts/_default/single.html |   27 ++++++++++++++++++++-------
 1 files changed, 20 insertions(+), 7 deletions(-)

diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 7e157b3..9439017 100755
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,14 +1,17 @@
 {{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
 {{ define "main" }}
 {{ $currentPageUrl := .URL }}
-{{ $currentSection := where .Site.Pages "Section" .Section }}
+{{ $currentSection := (where .Site.Pages "Section" .Section)  }}
 
 <div class="flex flex-wrap">
-  <aside class="w-20 pa4 bg-light-silver">
+  <aside class="w-2f0 bg-light-gray">
     <ul>
+      <li class="list b mb3">
+        More {{ .Section }}
+      </li>
       {{ range  $currentSection }}
-      <li>
-        <a href="{{ .URL }}" class="link">
+      <li class="list f5 w-100 hover-bg-white nl1">
+        <a href="{{ .URL }}" class="link black ph2 pv2 db">
             {{ .Title }}
         </a>
       </li>
@@ -22,11 +25,21 @@
       {{ humanize .Section | upper  }}
     </h4>
     <h1>
-      {{ .Title }} 
+      {{ .Title }}
     </h1>
-    <div class="nested-copy-line-height nested-links nested-img mid-gray measure-wide-l">
-        {{ .Content | markdownify }}
+    <div class="nested-copy-line-height f4 nested-linkfs nested-img mid-gray measure-wide-l">
+        {{ .Content  }}
     </div>
   </article>
 </div>
+
+357edd
+<style media="screen">
+  p a {
+    color: #2F6FC4;
+
+          /*#357edd*/
+  }
+</style>
+
 {{ end }}

--
Gitblit v1.10.0