The example workshop in Guide for building a workshop for First Cloud Journey is current broken because:
-
Somehow new version of Hugo (hugo
v0.144.2
on Linux) can't parse thedate
front-matter field. -
.Site.IsMultiLingual
(used inhugo-theme-learn
) was deprecated in Hugo v0.124.0 and will be removed in Hugo 0.137.0 (Source)
Problem | Solution |
---|---|
1. date front-matter field can't be parsed |
This is the first time I use Hugo, I've tried but didn't success to fix this. For the purpose of viewing this example workshop, I've removed all the date field as in commit 2a39eb2. |
2. .Site.IsMultiLingual is removed. |
I've replace all .Site.IsMultiLingual with hugo.IsMultilingual as in commit 265dc2a. |
From this link.