init(blog): initialize new hugo site

static site generator (built in golang) used to dynamically build a static website (for low spec hosts)
pull/1/head
steven 2021-09-15 13:42:27 -04:00
parent 992e8d7fc4
commit 50e09a11ea
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

3
blog/config.toml 100644
View File

@ -0,0 +1,3 @@
baseURL = 'http://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'