Start Game{% if race %} (Race Mode){% endif %}
diff --git a/WebHostLib/templates/header/baseHeader.html b/WebHostLib/templates/header/baseHeader.html
new file mode 100644
index 00000000..edea7edb
--- /dev/null
+++ b/WebHostLib/templates/header/baseHeader.html
@@ -0,0 +1,21 @@
+{% block head %}
+
+{% endblock %}
+
+{% block header %}
+
+{% endblock %}
diff --git a/WebHostLib/templates/header/dirtHeader.html b/WebHostLib/templates/header/dirtHeader.html
new file mode 100644
index 00000000..4b237333
--- /dev/null
+++ b/WebHostLib/templates/header/dirtHeader.html
@@ -0,0 +1,5 @@
+{% block head %}
+
+{% endblock %}
+
+{% include 'header/baseHeader.html' %}
diff --git a/WebHostLib/templates/header/grassHeader.html b/WebHostLib/templates/header/grassHeader.html
new file mode 100644
index 00000000..20ad404e
--- /dev/null
+++ b/WebHostLib/templates/header/grassHeader.html
@@ -0,0 +1,5 @@
+{% block head %}
+
+{% endblock %}
+
+{% include 'header/baseHeader.html' %}
diff --git a/WebHostLib/templates/header/oceanHeader.html b/WebHostLib/templates/header/oceanHeader.html
new file mode 100644
index 00000000..1bcfae5b
--- /dev/null
+++ b/WebHostLib/templates/header/oceanHeader.html
@@ -0,0 +1,5 @@
+{% block head %}
+
+{% endblock %}
+
+{% include 'header/baseHeader.html' %}
diff --git a/WebHostLib/templates/hostGame.html b/WebHostLib/templates/hostGame.html
index d05d0cb4..f3de06e9 100644
--- a/WebHostLib/templates/hostGame.html
+++ b/WebHostLib/templates/hostGame.html
@@ -8,7 +8,7 @@
{% endblock %}
{% block body %}
- {% include 'cloudHeader.html' %}
+ {% include 'header/oceanHeader.html' %}
diff --git a/WebHostLib/templates/hostRoom.html b/WebHostLib/templates/hostRoom.html
index 9e11ab32..e0108559 100644
--- a/WebHostLib/templates/hostRoom.html
+++ b/WebHostLib/templates/hostRoom.html
@@ -6,7 +6,7 @@
{% endblock %}
{% block body %}
- {% include 'cloudHeader.html' %}
+ {% include 'header/grassHeader.html' %}
{% if room.owner == session["_id"] %}
Room created from
Seed #{{ room.seed.id|suuid }}
diff --git a/WebHostLib/templates/pageWrapper.html b/WebHostLib/templates/pageWrapper.html
index 24ab7272..1872382a 100644
--- a/WebHostLib/templates/pageWrapper.html
+++ b/WebHostLib/templates/pageWrapper.html
@@ -19,7 +19,7 @@
{% if messages %}
{% for message in messages %}
-
{{ message }}
+
{{ message }}
{% endfor %}
{% endif %}
diff --git a/WebHostLib/templates/playerSettings.html b/WebHostLib/templates/playerSettings.html
index b9eee580..a3d97428 100644
--- a/WebHostLib/templates/playerSettings.html
+++ b/WebHostLib/templates/playerSettings.html
@@ -8,7 +8,7 @@
{% endblock %}
{% block body %}
- {% include 'cloudHeader.html' %}
+ {% include 'header/grassHeader.html' %}
Player Settings
diff --git a/WebHostLib/templates/tracker.html b/WebHostLib/templates/tracker.html
index bce25242..3a528c16 100644
--- a/WebHostLib/templates/tracker.html
+++ b/WebHostLib/templates/tracker.html
@@ -8,7 +8,7 @@
{% endblock %}
{% block body %}
- {% include 'cloudHeader.html' %}
+ {% include 'header/dirtHeader.html' %}
{% for team, players in inventory.items() %}
diff --git a/WebHostLib/templates/tutorial.html b/WebHostLib/templates/tutorial.html
index 2ba788dd..eb6a39d9 100644
--- a/WebHostLib/templates/tutorial.html
+++ b/WebHostLib/templates/tutorial.html
@@ -1,7 +1,7 @@
{% extends 'pageWrapper.html' %}
{% block head %}
- {% include 'cloudHeader.html' %}
+ {% include 'header/grassHeader.html' %}
Setup Tutorial