From 4a66dfc5d4ebb2dc840e5211a636580d1c2cb584 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Wed, 3 Apr 2019 11:23:03 -0400 Subject: [PATCH] byline on blog posts --- layouts/_default/single.html | 5 ++++- static/style.css | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 8aedd834..1f53dab2 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -5,7 +5,10 @@

{{ .Title }}

- {{ .Date.Format "January 2, 2006" }} · {{ if lt 1 .WordCount }}{{ .WordCount }} words{{ else }}{{ .WordCount }} word{{ end }} · {{ .ReadingTime }} minute read + by Jake Jarvis · + {{ .Date.Format "January 2, 2006" }} · + + {{ .ReadingTime }} minute read
{{ with .Params.tags }}{{ if ge (len .) 1 }} {{ range . }}{{ . }} {{ end }} diff --git a/static/style.css b/static/style.css index e7cd1d91..448b9f23 100644 --- a/static/style.css +++ b/static/style.css @@ -661,6 +661,11 @@ body#notes div#single div.meta { letter-spacing: 1px; } +body#notes div#single div.meta a { + color: #777777; + border: none; +} + body#notes div#single div.meta div.tags { text-transform: uppercase; line-height: 1.5em;