While reviewing #359 , @damianooldoni noticed an issue with a file in head/partials while following the procedure to render the website locally (see README.md).
I needed to replace {{ template "_internal/google_analytics_async.html" . }} in themes/minimo/layouts/partials/head/analytics.html with {{ template "_internal/google_analytics.html" . }} to solve [...]
ERROR html/template:_partials/head/analytics.html:1:13: no such template "_internal/google_analytics_async.html"
Note that (as is good practice for hugo), instead of manipulating the minimo theme directly (which is a git submodule, i.e. a different repo), we should create or modify the layouts/partials/head/analytics.html in this repo.
It might be an option to simply remove the analytics partial.
While reviewing #359 , @damianooldoni noticed an issue with a file in
head/partialswhile following the procedure to render the website locally (see README.md).Note that (as is good practice for hugo), instead of manipulating the
minimotheme directly (which is a git submodule, i.e. a different repo), we should create or modify thelayouts/partials/head/analytics.htmlin this repo.It might be an option to simply remove the analytics partial.