From 44e4bcc3ac1d8c19ddbbc27d8d1dfe80ce207583 Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Mon, 27 Nov 2017 10:25:45 -0800 Subject: [PATCH] Support latest Hugo version Sometime between 0.15 (the version running in production) and 0.31 (the current version), Hugo requires you to specify which theme you are using, which in our case is "gaweb". Not sure how best to test this, but without this patch hugo renders an empty page, and with it, hugo renders the blog server. Fixes #236. Fixes #238. --- README.md | 2 +- config.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cb1884b9..da5d2e41 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ that it looks correct before submitting a pull request. To view the site on your local machine, you need to do the following: 1. Clone the repo -2. Install [Hugo](http://hugo.spf13.com) +2. Install [Hugo](https://gohugo.io/) Once Hugo is installed, run it from the cloned repo using: diff --git a/config.toml b/config.toml index bbd0d6f5..e919ae55 100644 --- a/config.toml +++ b/config.toml @@ -2,6 +2,7 @@ baseurl = "https://blog.gopheracademy.com" languageCode = "en-us" title = "Gopher Academy Blog" disqusShortname = "gopheracademy" +theme = "gaweb" [taxonomies] author = "authors" series = "series"