From b86363a0181c8e61155fde29cfe2fbdb3f58ba6c Mon Sep 17 00:00:00 2001 From: floriandriessen Date: Wed, 13 Sep 2023 10:40:22 +0200 Subject: [PATCH 1/2] include _layouts folder for proper rendering This fixes a bug in the github pages parsing as index.md overrules the title settings in _config.yml. This was filed and solved in issue #134 of the Cayman theme repo. --- _layouts/defaults.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 _layouts/defaults.html diff --git a/_layouts/defaults.html b/_layouts/defaults.html new file mode 100644 index 0000000..55b7ad8 --- /dev/null +++ b/_layouts/defaults.html @@ -0,0 +1,41 @@ + + + + + +{% seo %} + + + + + + + {% include head-custom.html %} + + + Skip to the content. + + + +
+ {{ content }} + + +
+ + From 00ecd3e1380bb3ae55b2008f9226a45cc93f8083 Mon Sep 17 00:00:00 2001 From: floriandriessen Date: Wed, 13 Sep 2023 10:56:14 +0200 Subject: [PATCH 2/2] fix file name to apply changes --- _layouts/{defaults.html => default.html} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _layouts/{defaults.html => default.html} (100%) diff --git a/_layouts/defaults.html b/_layouts/default.html similarity index 100% rename from _layouts/defaults.html rename to _layouts/default.html