Update: Website-Entwicklung und lokaler Server-Setup

This commit is contained in:
Sven Lubenau 2025-09-12 17:41:08 +02:00
parent e6f993bb0a
commit 3b236487da
3 changed files with 73 additions and 7 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@ -1,7 +0,0 @@
{
"identifier" : "A3079254-9197-4E68-9D28-63C767C18EF8",
"localPath" : ".",
"remotePath" : "\/var\/www\/virtual\/slubenau\/html\/wil",
"server" : "slubenau",
"usesPublishing" : false
}

73
index.html Normal file
View File

@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WIL - Werde Informatiklehrerin</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
color: #333;
}
.container {
background: white;
border-radius: 15px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
text-align: center;
}
h1 {
color: #2c3e50;
font-size: 2.5em;
margin-bottom: 20px;
}
.status {
background: #e8f4f8;
border-left: 4px solid #3498db;
padding: 20px;
margin: 20px 0;
border-radius: 0 8px 8px 0;
}
.port-info {
background: #f8f9fa;
border: 1px solid #dee2e6;
padding: 15px;
border-radius: 8px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>🎓 WIL - Werde Informatiklehrerin</h1>
<div class="status">
<h3>🚀 Projekt läuft!</h3>
<p>Dieses Projekt ist über den Web Project Manager gestartet worden.</p>
</div>
<div class="port-info">
<h4>📋 Projekt-Info:</h4>
<p><strong>Port:</strong> 8003</p>
<p><strong>URL:</strong> http://localhost:8003</p>
<p><strong>Status:</strong> 🟢 Aktiv</p>
</div>
<p>Hier kannst du dein WIL-Projekt entwickeln!</p>
<div class="status">
<h3>💡 Nächste Schritte:</h3>
<ul style="text-align: left;">
<li>Erstelle deine HTML-Dateien in diesem Ordner</li>
<li>Füge CSS und JavaScript hinzu</li>
<li>Entwickle dein Projekt weiter</li>
</ul>
</div>
</div>
</body>
</html>