summaryrefslogtreecommitdiff
path: root/blag/layouts/blog/single.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/blog/single.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/blog/single.html')
-rw-r--r--blag/layouts/blog/single.html33
1 files changed, 12 insertions, 21 deletions
diff --git a/blag/layouts/blog/single.html b/blag/layouts/blog/single.html
index 1086aa8..12abff0 100644
--- a/blag/layouts/blog/single.html
+++ b/blag/layouts/blog/single.html
@@ -1,27 +1,18 @@
{{ partial "header.html" . }}
<body>
{{ partial "subheader.html" . }}
-<section id="main">
- <div>
- <div class="colleft">
- <article id="content">
- <h1 id="title"> {{ .Title }}</h1>
- <div class="post-meta">
- <ul class="tags">
- <li><i class="fa fa-tags"></i></li>
- {{ range .Params.tags }}
- <li>{{ . }}</li>
- {{ end }}
- </ul>
- <h4 id="date"> {{ .Date.Format "Mon Jan 2, 2006" }}</h4>
- </div>
- {{ .Content}}
- </article>
- </div>
- <div class="colright">
- {{ partial "author.html" . }}
- </div>
+<article id="content">
+ <h1 id="title"> {{ .Title }}</h1>
+ <div class="post-meta">
+ <ul class="tags">
+ <li><i class="fa fa-tags"></i></li>
+ {{ range .Params.tags }}
+ <li>{{ . }}</li>
+ {{ end }}
+ </ul>
+ <h4 id="date"> {{ .Date.Format "Mon Jan 2, 2006" }}</h4>
</div>
-</section>
+ {{ .Content}}
+</article>
</body>
{{ partial "footer.html" . }}