You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
597 B
HTML
30 lines
597 B
HTML
|
|
<!doctype html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="icon" href="favicon.png" type="image/x-icon">
|
|
<link rel="stylesheet" href="static/style.css">
|
|
{% if subpage %}
|
|
<title>Felix Pankratz - {{subpage}}</title>
|
|
{% else %}
|
|
<title>Felix Pankratz</title>
|
|
{% endif %}
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
Felix Pankratz
|
|
</div>
|
|
<!-- Side navigation -->
|
|
<div class="sidenav">
|
|
<a href="#">About</a>
|
|
<a href="#">Projekte</a>
|
|
<a href="#">Monitoring</a>
|
|
<a href="#">Disclaimer</a>
|
|
</div>
|
|
|
|
<div class="main">
|
|
<p> Lorem Ipsum dolor sit amet! </p>
|
|
</div>
|
|
|
|
</body>
|