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 = ""
date = ""
author = ""
cover = ""
tags = ["", ""]
keywords = ["", ""]
description = ""
showFullContent = false
+++
---
title: "{{ replace .Name "-" " " | title }}"
date: "{{ .Date }}"
draft: true
author: '{{ index .Site.Author "name" }}'
cover: ""
tags: ["", ""]
keywords: ["", ""]
description: ""
showFullContent : false
---