CorrectHugoDate
Jul 27, 2017
Technology
Problem
Reason
This is because hugo upgrade to a new version 0.25.1
, while this new version
won’t give the default value of date in newly created markdown file.
Solution
Edit the themes/hyde-a/archetypes/default.md
, add following items:
+++
title = ""
date = "{{ .Date }}"
description = ""
keywords = ["Linux"]
categories = ["Technology"]
+++
Now you could re-new your configuration, and then your blog will acts OK.