aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-02-24 20:49:13 -0700
committerkballou <kballou@devnulllabs.io>2017-09-02 19:31:45 -0600
commit9faf2797e283cc38bc5a04d17072199ff15cbecf (patch)
tree361d3094472f3f0d5499e5e60ff49ac76e39b973 /layouts/index.html
parentc44a32c7b8e2ece515ef04da479b46fd29edfddf (diff)
downloadblog.kennyballou.com-9faf2797e283cc38bc5a04d17072199ff15cbecf.tar.gz
blog.kennyballou.com-9faf2797e283cc38bc5a04d17072199ff15cbecf.tar.xz
Redesign ALL the Things
* Add target _blank for external social links * Change color scheme to more Solarized * Remove author column - This is moved to the top * Update links to images - These are now using Hugo's shortcodes for "figures"
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html19
1 files changed, 5 insertions, 14 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 528a97c..3e0966b 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -2,19 +2,10 @@
<body>
{{ partial "subheader.html" . }}
<section id="main">
- <div>
- <div class="colleft">
- {{ range first 10 .Data.Pages }}
- {{ if eq .Section "blog" }}
- {{ .Render "summary" }}
- {{ end }}
- {{ end }}
- </div>
- <div class="colright">
- {{ partial "author.html" . }}
- </div>
- <div>
+ {{ range first 10 .Data.Pages }}
+ {{ if eq .Section "blog" }}
+ {{ .Render "summary" }}
+ {{ end }}
+ {{ end }}
</section>
-
-
{{ partial "footer.html" . }}