From aad00e1ea955b4549394d652c3e3c715624eff03 Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Tue, 14 Jul 2020 20:08:01 +0100 Subject: [PATCH] Tags --- content/blog/2020-07-14-go-hugo.md | 4 +++- layouts/blog/single.html | 4 ++++ static/css/custom.css | 6 ------ 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/content/blog/2020-07-14-go-hugo.md b/content/blog/2020-07-14-go-hugo.md index c579a55..4f52318 100644 --- a/content/blog/2020-07-14-go-hugo.md +++ b/content/blog/2020-07-14-go-hugo.md @@ -2,7 +2,9 @@ layout: post title: "Go Hugo!" date: 2020-07-14 -categories: webdev, selfhosting +categories: +- webdev +- selfhosting --- I've just moved the site over from Jekyll to Hugo. Why? Because I have a growing vendetta against Ruby and (relatedly so) it was easier to make a webhook-based build system for Hugo. No matter what I do, I can never get RVM set up right, I can just about manage Python Venvs! This all spiraled from trying to finish my build system, as these things do. Now every time I push to master in my git repo, the site will be automatically built and copied in place, which was the last piece missing for a self-hosted equivalent to GitHub Pages. Win! And I only totally FUBARed Docker once in the process... diff --git a/layouts/blog/single.html b/layouts/blog/single.html index 4fd3e55..a93c42a 100644 --- a/layouts/blog/single.html +++ b/layouts/blog/single.html @@ -16,6 +16,10 @@

{{ .Title }}

+

Tags: + {{ range (.GetTerms "categories") }} + {{ .LinkTitle }} + {{ end }}

{{.Content}}
diff --git a/static/css/custom.css b/static/css/custom.css index f6a8607..ba67a63 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -108,9 +108,6 @@ article, .contained { grid-template-rows: auto 1fr auto; grid-template-columns: 100%; } -.page-link { - color: white !important; -} .bigimage { transform: skew(-10deg); color: white; @@ -167,9 +164,6 @@ a.button { .bg-green { background: green; } -* { - box-sizing: border-box; -} .full-width { width: 100vw; position: relative;