Hugo deprecation warning for Page.Now()
Closed this issue · 1 comments
ritesh commented
First of all, thanks for the amazing theme! I've just discovered that hugo v0.21 deprecates using the Page's Now function in favour of the template now function. This does not break the theme just yet, but subsequent versions of hugo will not support this.
I could find only one instance of using the page's now function in page_footer.html:20. The fix is pretty straightforward {{ .Now.Format "2006" }}
to {{ now.Year }}
. Let me know if you want me to submit a pull request.