From 05198ec9570fb2ad6958a1ff1036a3af292b7363 Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Tue, 14 Jul 2020 20:00:36 +0100 Subject: [PATCH] Hugo blogpost --- content/blog/2020-07-14-go-hugo.md | 9 +++++++++ layouts/blog/single.html | 25 +++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 content/blog/2020-07-14-go-hugo.md create mode 100644 layouts/blog/single.html diff --git a/content/blog/2020-07-14-go-hugo.md b/content/blog/2020-07-14-go-hugo.md new file mode 100644 index 0000000..c579a55 --- /dev/null +++ b/content/blog/2020-07-14-go-hugo.md @@ -0,0 +1,9 @@ +--- +layout: post +title: "Go Hugo!" +date: 2020-07-14 +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... + +Still very much working on the webdesign and have taken a bit of a step backwards for now, but it is functional, at least. diff --git a/layouts/blog/single.html b/layouts/blog/single.html new file mode 100644 index 0000000..4fd3e55 --- /dev/null +++ b/layouts/blog/single.html @@ -0,0 +1,25 @@ + + + {{ partial "head.html" . }} + +
+
+

Arona Jones

+ +
+
+
+

{{ .Title }}

+ {{.Content}} +
+
+ {{ partial "footer.html" . }} +
+ +