From c6ab012e6beff1a30e8ef695da5c8a1fa9f8ced3 Mon Sep 17 00:00:00 2001 From: Dexter Reed Date: Sat, 20 Jan 2024 00:00:51 +0000 Subject: [PATCH 1/3] Minor nitpick --- templates/includes/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/includes/footer.html b/templates/includes/footer.html index 11439d2..092a7f0 100644 --- a/templates/includes/footer.html +++ b/templates/includes/footer.html @@ -4,7 +4,7 @@ {% endif %} {% if config.extra.footer.show_source %} -

Website source

+

Website Source

{% endif %} {% if config.extra.footer.show_powered_by %} From 5d52f7fad96a5ace297249526ccb95c8567c26fd Mon Sep 17 00:00:00 2001 From: Dexter Reed Date: Sat, 20 Jan 2024 12:25:43 +0000 Subject: [PATCH 2/3] Allow showing an archive notice on a normal page --- templates/page.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/templates/page.html b/templates/page.html index a4ec2aa..023ecbe 100644 --- a/templates/page.html +++ b/templates/page.html @@ -2,4 +2,10 @@ {% block content %} {{ page.content | safe }} +{% if page.extra.archive %} +
+ ⚠ Archived + {{ page.extra.archive | markdown | safe }} +
+{% endif %} {% endblock content %} \ No newline at end of file From c3208d2172d88d4612be49078ba72bc550f5ab46 Mon Sep 17 00:00:00 2001 From: Dexter Reed Date: Sat, 20 Jan 2024 12:30:57 +0000 Subject: [PATCH 3/3] Update templates/404.html --- templates/404.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/404.html b/templates/404.html index 003e8bf..6282aee 100644 --- a/templates/404.html +++ b/templates/404.html @@ -8,7 +8,7 @@

Page Not Found

-

The requested page could not be found. If you feel this is not normal, then you create an issue on our issue tracker.

+

The requested page could not be found. If you feel this is not normal, then you can create an issue on the issue tracker.

Go Back