Merge pull request 'First html page' (#1) from development into server

Reviewed-on: http://192.168.0.105:3000/ArenosWebDev/arenos_www/pulls/1
This commit is contained in:
Daniel Nagel 2025-08-30 08:33:08 +02:00
commit 6cafa82bba
8 changed files with 104 additions and 0 deletions

BIN
AOA Logo 1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 MiB

BIN
AoA Logo 2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 MiB

10
docker-compose.yaml Normal file
View File

@ -0,0 +1,10 @@
version: "3.9"
services:
web:
image: nginx:alpine
container_name: arenos_www
ports:
- "2000:80"
volumes:
- ./html:/usr/share/nginx/html:ro

53
html/index.html Normal file
View File

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Arenos Pen & Paper</title>
<style>
body {
font-family: Arial, sans-serif;
background: #333333;
color: #ffffff;
text-align: center;
padding: 50px;
}
h1 {
font-size: 2.5em;
margin-bottom: 30px;
}
.links a {
display: inline-block;
margin: 15px;
padding: 15px 25px;
background: #252525;
color: #cecece;
text-decoration: none;
border-radius: 10px;
transition: background 0.3s;
}
.links a:hover {
background: #444;
}
</style>
</head>
<body>
<img src="AOA Logo 1.png" alt="Adventures of Arenos">
<h1>Willkommen in Arenos</h1>
<h3>Hier findest du alle Links!</h3>
<div class="links">
<a href="https://arenos.danielnagel.at/map/map.html" target="_blank">🌍 Weltkarte</a>
<a href="https://arenos.danielnagel.at/rules/rules.html" target="_blank">📜 Regel-Releases</a>
<a href="https://discord.gg/3P7PZrm6" target="_blank">Offizieller Discord</a>
<br>
<h4>Wiki Zugang braucht einen Benutzer zum lesen. Frage auf dem Discord nach!</h4>
<a href="https://wiki.arenos.danielnagel.at" target="_blank">
<img src="AoA Logo 2.png" alt="Adventures of Arenos"
style="width: 80px;; height: 80;">
<br>
Wiki
</a>
<br>
<a href="https://85.215.119.155" target="_blank">📜 Altes Wiki (Nichts mehr weiterschreiben!)</a>
</div>
</body>
</html>

Binary file not shown.

Binary file not shown.

41
rules/rules.html Normal file
View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Arenos Pen & Paper</title>
<style>
body {
font-family: Arial, sans-serif;
background: #0a0a0a;
color: #f0f0f0;
text-align: center;
padding: 50px;
}
h1 {
font-size: 2.5em;
margin-bottom: 30px;
}
.links a {
display: inline-block;
margin: 15px;
padding: 15px 25px;
background: #222;
color: #fff;
text-decoration: none;
border-radius: 10px;
transition: background 0.3s;
}
.links a:hover {
background: #444;
}
</style>
</head>
<body>
<h1>Hier sind die Aktuellen Regeln</h1>
<div class="links">
<a href="https://arenos.danielnagel.at/rules/charakterblatt/Charakterblatt_V1.12.1.pdf" target="_blank">Charakterblatt</a>
<a href="https://arenos.danielnagel.at/rules/charaktererstellung/Charaktererstellung_V1.12.2.pdf" target="_blank">Charakter Erstellung</a>
<a href="https://arenos.danielnagel.at/rules/grundregelwerk/Grundregelwerk_V1.12.2.pdf" target="_blank">Grundregelwerk</a>
</div>
</body>
</html>