Start adding the files used by the website builder

This commit is contained in:
2024-10-05 17:38:52 +02:00
parent 8c2f522bbf
commit 166c176727
16 changed files with 274 additions and 0 deletions

27
template.html Normal file
View File

@@ -0,0 +1,27 @@
<!doctype html>
<html lang="da">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/img/mad-icon.png" />
<link href="/style.css" rel="stylesheet">
<title>Niels' mad</title>
</head>
<body>
<header><a href="/">&nbsp;Niels' mad&nbsp;</a></header>
<nav>
<ul>
<li><a href="/retter/">Alle retter</a></li>
<li><a href="/om/">Om Niels' mad</a></li>
<li><a href="/atom.xml">Atom-feed</a></li>
</ul>
</nav>
<section>
<article>
CONTENT
</article>
</section>
</body>
</html>