summaryrefslogtreecommitdiff
path: root/blag/layouts/index.html
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-02-24 20:49:13 -0700
committerkballou <kballou@devnulllabs.io>2016-02-25 10:08:28 -0700
commitf09e4be41ded14547e18f8a004f03e500da3bf7e (patch)
tree480bf13c4b1960a759f8f4c58a2b2fe4cad9658e /blag/layouts/index.html
parent4705635a73ac8fc16c0f26fa244ca220a4a3d0b8 (diff)
downloadkennyballou.com-f09e4be41ded14547e18f8a004f03e500da3bf7e.tar.gz
kennyballou.com-f09e4be41ded14547e18f8a004f03e500da3bf7e.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 'blag/layouts/index.html')
-rw-r--r--blag/layouts/index.html19
1 files changed, 5 insertions, 14 deletions
diff --git a/blag/layouts/index.html b/blag/layouts/index.html
index 528a97c..3e0966b 100644
--- a/blag/layouts/index.html
+++ b/blag/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" . }}