32 lines
752 B
HTML
32 lines
752 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="../static/style.css">
|
|
<title>About this Website — blog</title>
|
|
<body>
|
|
<header>
|
|
<h1>blog</h1>
|
|
<nav>
|
|
<ul class="nav navbar-nav">
|
|
<li><a href="../">Welcome</a></li>
|
|
|
|
<li><a href="../blog/">Blog</a></li>
|
|
|
|
<li><a href="../projects/">Projects</a></li>
|
|
|
|
<li class="active"><a href="../about/">About</a></li>
|
|
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<div class="page">
|
|
|
|
<h2>About this Website</h2>
|
|
<p>This is a website that was made with the Lektor quickstart.</p>
|
|
<p>And it does not contain a lot of information.</p>
|
|
|
|
|
|
</div>
|
|
<footer>
|
|
© Copyright 2019 by ungleich.
|
|
</footer>
|
|
</body>
|