Initial commit

This commit is contained in:
2025-04-08 12:06:32 +02:00
commit 66df99954e
18 changed files with 853 additions and 0 deletions

5
components/footer.html Normal file
View File

@@ -0,0 +1,5 @@
<footer>
<!--#set var="URL" value="https://${HTTP_HOST}${DOCUMENT_URI}"-->
<p>Tato webová stránka podléhá licenci GNU Free Documentation License v1.3.</p>
</footer>

8
components/head.html Normal file
View File

@@ -0,0 +1,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="darkred">
<link rel="icon" type="image/png" href="favicon.png">
<link href="icons.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<script src="js/theme.js"></script>

7
components/header.html Normal file
View File

@@ -0,0 +1,7 @@
<header>
<div class="header-title">Svobodný software Liberec</div>
<div class="header-subtitle">Richard Stallman na Technické univerzitě v Liberci</div>
<img src="data:," alt="Přepínač světlého a tmavého režimu" class="light-dark-switch" onclick="switch_theme();">
<img src="data:," alt="Přepínač širokého a úzkého rozvržení" class="layout-switch" onclick="switch_layout();">
</header>

9
components/nav.html Normal file
View File

@@ -0,0 +1,9 @@
<nav>
<ul>
<li><a href=".">Domovská stránka</a></li>
<li><a href="stallman">Richard Stallman</a></li>
<li><a href="free">Svobodný software</a></li>
<li><a href="javascript">JavaScript</a></li>
</ul>
</nav>