summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Kohl <git@jonaskohl.de>2024-09-10 13:24:26 +0200
committerJonas Kohl <git@jonaskohl.de>2024-09-10 13:24:26 +0200
commit95e7fe34467e5aab82e517757f77d8af9717ee7d (patch)
tree4f40d7c1f54aa784f3879312d9d27b3a798f5337
parent01d7c30c5615fca2e3dd6cb0e578167f6769b624 (diff)
Add downloads page (remove trivia page)
-rw-r--r--images/nav.gifbin16477 -> 16602 bytes
-rw-r--r--images/nava2.gifbin1763 -> 1852 bytes
-rw-r--r--includes/mobile/template_head_end.php2
-rw-r--r--navside.html2
-rw-r--r--pages/downloads.php10
-rw-r--r--pages/trivia.php8
6 files changed, 12 insertions, 10 deletions
diff --git a/images/nav.gif b/images/nav.gif
index 2345047..244cc9c 100644
--- a/images/nav.gif
+++ b/images/nav.gif
Binary files differ
diff --git a/images/nava2.gif b/images/nava2.gif
index 41b88d9..f64a70f 100644
--- a/images/nava2.gif
+++ b/images/nava2.gif
Binary files differ
diff --git a/includes/mobile/template_head_end.php b/includes/mobile/template_head_end.php
index 28eef80..5d9b670 100644
--- a/includes/mobile/template_head_end.php
+++ b/includes/mobile/template_head_end.php
@@ -14,7 +14,7 @@
<div class="collapse navbar-collapse" id="nav-collapse">
<ul class="nav navbar-nav">
<li<?= ($NAV_LINK_ID ?? null) === "start" ? ' class="active"' : ''; ?>><a href="/pages/start.php">Startseite</a></li>
- <li<?= ($NAV_LINK_ID ?? null) === "trivia" ? ' class="active"' : ''; ?>><a href="/pages/trivia.php">Trivia</a></li>
+ <li<?= ($NAV_LINK_ID ?? null) === "downloads" ? ' class="active"' : ''; ?>><a href="/pages/downloads.php">Downloads</a></li>
<li<?= ($NAV_LINK_ID ?? null) === "exklusiv" ? ' class="active"' : ''; ?>><a href="/pages/exklusiv.php">Exklusiv</a></li>
<li<?= ($NAV_LINK_ID ?? null) === "dekomp" ? ' class="active"' : ''; ?>><a href="/pages/dekomp.php">Dekomp</a></li>
<li<?= ($NAV_LINK_ID ?? null) === "loesung" ? ' class="active"' : ''; ?>><a href="/pages/loesung.php">L&ouml;sung</a></li>
diff --git a/navside.html b/navside.html
index 27626bd..c1d928e 100644
--- a/navside.html
+++ b/navside.html
@@ -63,7 +63,7 @@
</map>
<map name="map2">
- <area shape="rect" onMouseOver="nava(2)" onMouseOut="blank(2)" coords="0,0,106,34" target="sitemain" href="pages/trivia.php">
+ <area shape="rect" onMouseOver="nava(2)" onMouseOut="blank(2)" coords="0,0,106,34" target="sitemain" href="pages/downloads.php">
</map>
<map name="map3">
diff --git a/pages/downloads.php b/pages/downloads.php
new file mode 100644
index 0000000..a6ac871
--- /dev/null
+++ b/pages/downloads.php
@@ -0,0 +1,10 @@
+<?php $NAV_LINK_ID = "downloads"; ?>
+<?php $PAGE_TITLE = "Downloads"; ?>
+<?php include __DIR__ . "/../includes/template_start.php"; ?>
+
+<h1>Downloads</h1>
+<p>Lade das Spiel herunter: <a href="/static/MysticHouse.iso" target="_top">MysticHouse.iso (ca. 437,15 MiB)</a></p>
+
+<p><i>Weitere Downloads folgen bald&hellip;</i></p>
+
+<?php include __DIR__ . "/../includes/template_end.php"; ?>
diff --git a/pages/trivia.php b/pages/trivia.php
deleted file mode 100644
index 914aa34..0000000
--- a/pages/trivia.php
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php $NAV_LINK_ID = "trivia"; ?>
-<?php $PAGE_TITLE = "Trivia"; ?>
-<?php include __DIR__ . "/../includes/template_start.php"; ?>
-
-<h1>Trivia</h1>
-<p><i>Coming soon...</i></p>
-
-<?php include __DIR__ . "/../includes/template_end.php"; ?>