diff --git a/.gitea/workflows/hostinger.yml b/.gitea/workflows/hostinger.yml
index b662eccc..5b245a35 100644
--- a/.gitea/workflows/hostinger.yml
+++ b/.gitea/workflows/hostinger.yml
@@ -33,5 +33,5 @@ jobs:
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: ${{ secrets.REMOTE_USER }}
TARGET: ${{ secrets.REMOTE_TARGET }}
- REMOTE PORT: "65002"
- EXCLUDE: "/__Source/, /node_modules/, /host/"
\ No newline at end of file
+ REMOTE_PORT: "65002"
+ EXCLUDE: "/node_modules/, /host/"
\ No newline at end of file
diff --git a/src/_includes/misc/404.njk b/src/404.html
similarity index 91%
rename from src/_includes/misc/404.njk
rename to src/404.html
index 493fdc8b..1e9eda87 100644
--- a/src/_includes/misc/404.njk
+++ b/src/404.html
@@ -1,5 +1,5 @@
---
-layout: misc/base
+layout: global/root
title: "404: Page Not Found"
h1: "404: Page Not Found"
eleventyExcludeFromCollections: true
@@ -9,4 +9,4 @@ eleventyExcludeFromCollections: true
Made with ♥ by {{ sitemeta.siteAuthor.name }} • Shrine Launched: 16 February 2023
diff --git a/src/_includes/asummersend/hero.njk b/src/_includes/asummersend/hero.html similarity index 97% rename from src/_includes/asummersend/hero.njk rename to src/_includes/asummersend/hero.html index e8c9af7b..ccfb3355 100644 --- a/src/_includes/asummersend/hero.njk +++ b/src/_includes/asummersend/hero.html @@ -1,4 +1,4 @@ -{% extends "global/hero.njk" %} +{% extends "global/hero.html" %} {% block heroImg %}Welcome to {{ sitemeta.siteAuthor.name }}'s shrine for {% cite "A Summer’s End — Hong Kong 1986" %}, an indie visual novel developed by Oracle and Bone. Set in 1980s Hong Kong, it tells of a love story between two women.
diff --git a/src/_includes/cassettebeasts/base.njk b/src/_includes/cassettebeasts/base.html similarity index 63% rename from src/_includes/cassettebeasts/base.njk rename to src/_includes/cassettebeasts/base.html index a81a2649..61b2706c 100644 --- a/src/_includes/cassettebeasts/base.njk +++ b/src/_includes/cassettebeasts/base.html @@ -1,6 +1,6 @@ {%- css %}{% include "src/assets/css/cassettebeasts.css" %}{%- endcss %} -{% extends "global/baselayout.njk" %} +{% extends "global/baselayout.html" %} {% block metaTitle %} @@ -14,6 +14,6 @@ {% endblock %} -{% block hero %}{% include "cassettebeasts/hero.njk" %}{% endblock %} -{% block navbar %}{% include "cassettebeasts/navbar.njk" %}{% endblock %} -{% block footer %}{% include "cassettebeasts/footer.njk" %}{% endblock %} +{% block hero %}{% include "cassettebeasts/hero.html" %}{% endblock %} +{% block navbar %}{% include "cassettebeasts/navbar.html" %}{% endblock %} +{% block footer %}{% include "cassettebeasts/footer.html" %}{% endblock %} diff --git a/src/_includes/cassettebeasts/content.html b/src/_includes/cassettebeasts/content.html new file mode 100644 index 00000000..d71db6d7 --- /dev/null +++ b/src/_includes/cassettebeasts/content.html @@ -0,0 +1,7 @@ +--- +layout: cassettebeasts/base +--- + +{% extends "global/content.html" %} + +{% block shrineInfo %}{% include "cassettebeasts/shrineinfo.html" %}{% endblock %} diff --git a/src/_includes/cassettebeasts/content.njk b/src/_includes/cassettebeasts/content.njk deleted file mode 100644 index e7674e69..00000000 --- a/src/_includes/cassettebeasts/content.njk +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: cassettebeasts/base ---- - -{% extends "global/content.njk" %} - -{% block shrineInfo %}{% include "cassettebeasts/shrineinfo.njk" %}{% endblock %} \ No newline at end of file diff --git a/src/_includes/cassettebeasts/footer.njk b/src/_includes/cassettebeasts/footer.html similarity index 79% rename from src/_includes/cassettebeasts/footer.njk rename to src/_includes/cassettebeasts/footer.html index 2bfc9183..f5cf6264 100644 --- a/src/_includes/cassettebeasts/footer.njk +++ b/src/_includes/cassettebeasts/footer.html @@ -1,4 +1,4 @@ -{% extends "global/footer.njk" %} +{% extends "global/footer.html" %} {% block footerContent %}Made with ♥ by {{ sitemeta.siteAuthor.name }} • Shrine Launched: 3 August 2023
diff --git a/src/_includes/cassettebeasts/hero.njk b/src/_includes/cassettebeasts/hero.html similarity index 97% rename from src/_includes/cassettebeasts/hero.njk rename to src/_includes/cassettebeasts/hero.html index 9068ea7e..3350061e 100644 --- a/src/_includes/cassettebeasts/hero.njk +++ b/src/_includes/cassettebeasts/hero.html @@ -1,4 +1,4 @@ -{% extends "global/hero.njk" %} +{% extends "global/hero.html" %} {% block heroImg %}Welcome to {{ sitemeta.siteAuthor.name }}'s shrine for {% cite "Cassette Beasts" %}, an indie monster collecting turn-based open-world role-playing video game developed by Bytten Studio and published by Raw Fury.
diff --git a/src/_includes/global/baselayout.njk b/src/_includes/global/baselayout.html similarity index 81% rename from src/_includes/global/baselayout.njk rename to src/_includes/global/baselayout.html index cfc704e6..fd234d2c 100644 --- a/src/_includes/global/baselayout.njk +++ b/src/_includes/global/baselayout.html @@ -8,13 +8,13 @@ {% block metaTitle %} {% endblock %} - {% include "global/meta.njk" %} + {% include "global/meta.html" %} {# Feeds #} - {% include "global/feeds.njk" %} + {% include "global/feeds.html" %} {# Fonts #} - {% include "global/fonts.njk" %} + {% include "global/fonts.html" %} {# CSS #} - {% include "global/css-bundle.njk" %} + {% include "global/css-bundle.html" %} {% if hasTooltips %} {% endif %} @@ -43,11 +43,11 @@ - {% block hero %}{% include "global/hero.njk" %}{% endblock %} - {% block navbar %}{% include "global/navbar.njk" %}{% endblock %} + {% block hero %}{% include "global/hero.html" %}{% endblock %} + {% block navbar %}{% include "global/navbar.html" %}{% endblock %}