Tweak default front-matter.

None of the variables were being filled out, which wasn't great. Now we
have sane defaults!
This commit is contained in:
Nick Dumas 2020-03-13 09:47:20 -04:00
parent 0dc364f3e2
commit 1dc1af35cc

View File

@ -1,10 +1,11 @@
+++ ---
title = "" title: "{{ replace .Name "-" " " | title }}"
date = "" date: "{{ .Date }}"
author = "" draft: true
cover = "" author: '{{ index .Site.Author "name" }}'
tags = ["", ""] cover: ""
keywords = ["", ""] tags: ["", ""]
description = "" keywords: ["", ""]
showFullContent = false description: ""
+++ showFullContent : false
---