https://jacksonchen666.com/misc/ returns 403 because there's no index.html
seems related to the recent hugo update, and this warning might be it
WARN found no layout file for "html" for kind "section": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
Jackson referenced this ticket in commit d2f7a2b.
Jackson referenced this ticket in commit 8f30d9e.
a hot fix has been rolled out, but that's not a permanent fix, and now that's the goal
ok apparently because of
layout/_default/section.html
being a symlink tolayout/_default/single.html
(within the same directory), that doesn't work for some reason and causes that warning and therefore rendering issue.except i don't really have a use for section.html being different, but not having it as a symlink will leave it out of date...
(also feeling like i'm starting to understand layouts again)
i attempted a fix (3f0da0acee394c7e5fe7a8dae5a650758aa2d8d8) but it only ended up with an empty page
(making
section.html
the same assingle.html
manually. it just made a blank page)
i found the issue with the fix: an HTML comment being outside the
main
definition just break iti don't understand exactly why that's the case. the fixes for the fix will be pushed.
Jackson referenced this ticket in commit 0f6c2fe.