cntrump / hugo-notepadium

a fast gohugo theme, 100% JavaScript-free.
https://examplesite.lvv.me/
MIT License
332 stars 125 forks source link

"default.md" file issue #80

Closed AswinBlue closed 4 years ago

AswinBlue commented 4 years ago

hugo command "hugo new " make an error

"Error: Near line 3 (last key parsed 'date'): Expected value but found '{' instead."

I think the error comes from codes in the file "hugo-notepadium/archetypes/default.md"

date = {{ .Date }}
lastmod = {{ .Date }}

isn't it should be like below?

date = "{{ .Date }}"
lastmod = "{{ .Date }}"
AswinBlue commented 4 years ago

My hugo version was not latest. After I update hugo, it works well