From 0e8016da5a12e485d34f135845102a7c2a513e8e Mon Sep 17 00:00:00 2001 From: Mei Akizuru Date: Sat, 27 Dec 2025 03:28:21 +0900 Subject: [PATCH] migrate to new template system Since Hugo v0.146.0 it introduces the new template system. * `layout: list` seems no longer to work. `books/_index.md` treated as a "section" kind. * `layouts/partials` is renamed to `layouts/_partials`. --- content/books/_index.md | 3 +-- layouts/{partials => _partials}/favicon.html | 0 layouts/{partials => _partials}/footer.html | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename layouts/{partials => _partials}/favicon.html (100%) rename layouts/{partials => _partials}/footer.html (100%) diff --git a/content/books/_index.md b/content/books/_index.md index 6fbbf3a..c0bd31d 100644 --- a/content/books/_index.md +++ b/content/books/_index.md @@ -1,4 +1,3 @@ --- title: "Bibliography" -layout: list ---- \ No newline at end of file +--- diff --git a/layouts/partials/favicon.html b/layouts/_partials/favicon.html similarity index 100% rename from layouts/partials/favicon.html rename to layouts/_partials/favicon.html diff --git a/layouts/partials/footer.html b/layouts/_partials/footer.html similarity index 100% rename from layouts/partials/footer.html rename to layouts/_partials/footer.html