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/partials/menu-contextual.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/partials/menu-contextual.html b/layouts/partials/menu-contextual.html
index dd89d3c..ae1aa71 100644
--- a/layouts/partials/menu-contextual.html
+++ b/layouts/partials/menu-contextual.html
@@ -6,7 +6,7 @@
{{ $i := sub ($currentSection | len) 1 }}
{{/* So we can only show this menu if there are one or more other entries */}}
{{ if ge $i 1 }}
- <aside class="bg-light-gray pa3">
+ <div class="bg-light-gray pa3">
<ul>
<li class="list b mb3">{{/* Return the section name, make it readable (humanize) and if there are 2 or more entries, make the section name plural (pluralize). */}}
{{ $i }} More {{ if ge $i 2 }}{{ .Section | humanize | pluralize }}{{ else }}{{ .Section | humanize }}{{end}}
@@ -20,5 +20,5 @@
</li>
{{ end }}
</ul>
- </aside>
+ </div>
{{ end }}
--
Gitblit v1.10.0