From fb192b989dc3c3ccb8a08a77cd10e1c2222248cf Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 13 May 2021 00:41:49 +0200 Subject: [PATCH] update jinja templates to use base static files --- WebHostLib/templates/autotablepage.html | 2 +- WebHostLib/templates/check.html | 4 ++-- WebHostLib/templates/checkResult.html | 2 +- WebHostLib/templates/generate.html | 4 ++-- WebHostLib/templates/header/baseHeader.html | 2 +- WebHostLib/templates/header/dirtHeader.html | 2 +- WebHostLib/templates/header/grassHeader.html | 2 +- WebHostLib/templates/header/oceanHeader.html | 2 +- WebHostLib/templates/hostGame.html | 4 ++-- WebHostLib/templates/hostRoom.html | 2 +- WebHostLib/templates/islandFooter.html | 2 +- WebHostLib/templates/landing.html | 2 +- WebHostLib/templates/pageWrapper.html | 10 +++++----- WebHostLib/templates/playerSettings.html | 6 +++--- WebHostLib/templates/playerTracker.html | 4 ++-- WebHostLib/templates/seedError.html | 2 +- WebHostLib/templates/tablepage.html | 2 +- WebHostLib/templates/tracker.html | 6 +++--- WebHostLib/templates/tutorial.html | 4 ++-- WebHostLib/templates/tutorialLanding.html | 4 ++-- WebHostLib/templates/userContent.html | 4 ++-- WebHostLib/templates/viewSeed.html | 4 ++-- WebHostLib/templates/waitSeed.html | 2 +- WebHostLib/templates/weightedSettings.html | 6 +++--- 24 files changed, 42 insertions(+), 42 deletions(-) diff --git a/WebHostLib/templates/autotablepage.html b/WebHostLib/templates/autotablepage.html index 0bb30f87..8c6e7a2b 100644 --- a/WebHostLib/templates/autotablepage.html +++ b/WebHostLib/templates/autotablepage.html @@ -1,5 +1,5 @@ {% extends "tablepage.html" %} {% block head %} {{ super() }} - + {% endblock %} diff --git a/WebHostLib/templates/check.html b/WebHostLib/templates/check.html index 78b014eb..d21f487f 100644 --- a/WebHostLib/templates/check.html +++ b/WebHostLib/templates/check.html @@ -3,8 +3,8 @@ {% block head %} {{ super() }} Mystery Check Result - - + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/checkResult.html b/WebHostLib/templates/checkResult.html index 5bc4fa9d..23dcd2a8 100644 --- a/WebHostLib/templates/checkResult.html +++ b/WebHostLib/templates/checkResult.html @@ -3,7 +3,7 @@ {% block head %} {{ super() }} Mystery YAML Test Roll Results - + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/generate.html b/WebHostLib/templates/generate.html index 865f0c23..2a013053 100644 --- a/WebHostLib/templates/generate.html +++ b/WebHostLib/templates/generate.html @@ -3,8 +3,8 @@ {% block head %} {{ super() }} Generate Game - - + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/header/baseHeader.html b/WebHostLib/templates/header/baseHeader.html index b1c2a188..b47537ba 100644 --- a/WebHostLib/templates/header/baseHeader.html +++ b/WebHostLib/templates/header/baseHeader.html @@ -1,5 +1,5 @@ {% block head %} - + {% endblock %} {% block header %} diff --git a/WebHostLib/templates/header/dirtHeader.html b/WebHostLib/templates/header/dirtHeader.html index 4b237333..80255458 100644 --- a/WebHostLib/templates/header/dirtHeader.html +++ b/WebHostLib/templates/header/dirtHeader.html @@ -1,5 +1,5 @@ {% block head %} - + {% endblock %} {% include 'header/baseHeader.html' %} diff --git a/WebHostLib/templates/header/grassHeader.html b/WebHostLib/templates/header/grassHeader.html index 20ad404e..8a1e5e2f 100644 --- a/WebHostLib/templates/header/grassHeader.html +++ b/WebHostLib/templates/header/grassHeader.html @@ -1,5 +1,5 @@ {% block head %} - + {% endblock %} {% include 'header/baseHeader.html' %} diff --git a/WebHostLib/templates/header/oceanHeader.html b/WebHostLib/templates/header/oceanHeader.html index 1bcfae5b..f7869b63 100644 --- a/WebHostLib/templates/header/oceanHeader.html +++ b/WebHostLib/templates/header/oceanHeader.html @@ -1,5 +1,5 @@ {% block head %} - + {% endblock %} {% include 'header/baseHeader.html' %} diff --git a/WebHostLib/templates/hostGame.html b/WebHostLib/templates/hostGame.html index d31da02d..5ae0323b 100644 --- a/WebHostLib/templates/hostGame.html +++ b/WebHostLib/templates/hostGame.html @@ -3,8 +3,8 @@ {% block head %} {{ super() }} Upload Multidata - - + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/hostRoom.html b/WebHostLib/templates/hostRoom.html index ed741c54..d8d62f30 100644 --- a/WebHostLib/templates/hostRoom.html +++ b/WebHostLib/templates/hostRoom.html @@ -2,7 +2,7 @@ {% import "macros.html" as macros %} {% block head %} Multiworld {{ room.id|suuid }} - + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/islandFooter.html b/WebHostLib/templates/islandFooter.html index 78447ffb..5a39e289 100644 --- a/WebHostLib/templates/islandFooter.html +++ b/WebHostLib/templates/islandFooter.html @@ -14,5 +14,5 @@ {% endblock %} {% block head %} - + {% endblock %} diff --git a/WebHostLib/templates/landing.html b/WebHostLib/templates/landing.html index 38669e58..111c7b9f 100644 --- a/WebHostLib/templates/landing.html +++ b/WebHostLib/templates/landing.html @@ -2,7 +2,7 @@ {% block head %} MultiWorld - + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/pageWrapper.html b/WebHostLib/templates/pageWrapper.html index 1872382a..33c22e34 100644 --- a/WebHostLib/templates/pageWrapper.html +++ b/WebHostLib/templates/pageWrapper.html @@ -4,11 +4,11 @@ - - - - - + + + + + {% block head %} MultiWorld {% endblock %} diff --git a/WebHostLib/templates/playerSettings.html b/WebHostLib/templates/playerSettings.html index 8f3e584a..9e156076 100644 --- a/WebHostLib/templates/playerSettings.html +++ b/WebHostLib/templates/playerSettings.html @@ -2,10 +2,10 @@ {% block head %} Player Settings - + - - + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/playerTracker.html b/WebHostLib/templates/playerTracker.html index e9e9e517..8a88fd20 100644 --- a/WebHostLib/templates/playerTracker.html +++ b/WebHostLib/templates/playerTracker.html @@ -2,8 +2,8 @@ {{ player_name }}'s Tracker - - + + diff --git a/WebHostLib/templates/seedError.html b/WebHostLib/templates/seedError.html index b0414f83..d8f95a1c 100644 --- a/WebHostLib/templates/seedError.html +++ b/WebHostLib/templates/seedError.html @@ -3,7 +3,7 @@ {% block head %} Generation failed, please retry. - + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/tablepage.html b/WebHostLib/templates/tablepage.html index 70a4c4d3..13174d33 100644 --- a/WebHostLib/templates/tablepage.html +++ b/WebHostLib/templates/tablepage.html @@ -7,5 +7,5 @@ - + {% endblock %} diff --git a/WebHostLib/templates/tracker.html b/WebHostLib/templates/tracker.html index d703dfae..52419acd 100644 --- a/WebHostLib/templates/tracker.html +++ b/WebHostLib/templates/tracker.html @@ -2,9 +2,9 @@ {% block head %} {{ super() }} Multiworld Tracker - - - + + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/tutorial.html b/WebHostLib/templates/tutorial.html index 95e4271b..bc516ddc 100644 --- a/WebHostLib/templates/tutorial.html +++ b/WebHostLib/templates/tutorial.html @@ -3,11 +3,11 @@ {% block head %} {% include 'header/grassHeader.html' %} Archipelago - + - + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/tutorialLanding.html b/WebHostLib/templates/tutorialLanding.html index f998ecaa..36029e56 100644 --- a/WebHostLib/templates/tutorialLanding.html +++ b/WebHostLib/templates/tutorialLanding.html @@ -3,8 +3,8 @@ {% block head %} {% include 'header/grassHeader.html' %} Archipelago Guides - - + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/userContent.html b/WebHostLib/templates/userContent.html index 59c81f83..acd4d05f 100644 --- a/WebHostLib/templates/userContent.html +++ b/WebHostLib/templates/userContent.html @@ -3,8 +3,8 @@ {% block head %} {{ super() }} Generate Game - - + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/viewSeed.html b/WebHostLib/templates/viewSeed.html index 36937809..89968909 100644 --- a/WebHostLib/templates/viewSeed.html +++ b/WebHostLib/templates/viewSeed.html @@ -3,8 +3,8 @@ {% block head %} View Seed {{ seed.id|suuid }} - - + + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/waitSeed.html b/WebHostLib/templates/waitSeed.html index 40c0c160..16465121 100644 --- a/WebHostLib/templates/waitSeed.html +++ b/WebHostLib/templates/waitSeed.html @@ -4,7 +4,7 @@ {% block head %} Generation in Progress - + {% endblock %} {% block body %} diff --git a/WebHostLib/templates/weightedSettings.html b/WebHostLib/templates/weightedSettings.html index 45a68f80..83af0680 100644 --- a/WebHostLib/templates/weightedSettings.html +++ b/WebHostLib/templates/weightedSettings.html @@ -2,10 +2,10 @@ {% block head %} Player Settings - + - - + + {% endblock %} {% block body %}