initial commit

This commit is contained in:
2025-01-05 20:10:08 +01:00
commit 4c9fa129ad
4 changed files with 53 additions and 0 deletions

3
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

37
index.html Normal file
View File

@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Schwarzes Jena: alternative Tanzveranstaltungen, Lesungen, Konzerte und düstere Zusammenkünfte</title>
<script src="sj.js"></script>
<link rel="stylesheet" href="js.css">
</head>
<body>
<nav class="left">
<h2>Shortcuts</h2>
<ul>
<li>Homer</li>
<li>Events in Jena</li>
<li>altes Forum</li>
</ul>
<h2>Genres</h2>
<h2>Infos</h2>
</nav>
<nav class="right">
<h2>Locations</h2>
<h2>andere Tags</h2>
</nav>
<main>
<header>
<h1>schwarzes Jena</h1>
<div class="slogan">alternative Tanzveranstaltungen, Konzerte, Lesungen u.a. düstere Zusammenkünfte</div>
</header>
<div id="showcase">
</div>
<div id="eventlist">
</div>
</main>
</body>
</html>

12
js.css Normal file
View File

@@ -0,0 +1,12 @@
body {
font-family: sans-serif;
}
nav {
width: 200px;
}
.debug,
nav{
background: orange;
border: 1px dotted lime;
}

1
sj.js Normal file
View File

@@ -0,0 +1 @@
console.log('hello world');