podcast-webseite/templates/layout.html
L3D b9bbd07e6e
Initial commit
Initial commit with lektor:
```bash
lektor quickstart
```
2019-05-25 20:06:05 +02:00

29 lines
832 B
HTML

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
<title>{% block title %}Welcome{% endblock %} — c3woc-podcast</title>
<body>
<header>
<h1>c3woc-podcast</h1>
<nav>
<ul class="nav navbar-nav">
<li{% if this._path == '/' %} class="active"{% endif
%}><a href="{{ '/'|url }}">Welcome</a></li>
{% for href, title in [
['/blog', 'Blog'],
['/projects', 'Projects'],
['/about', 'About']
] %}
<li{% if this.is_child_of(href) %} class="active"{% endif
%}><a href="{{ href|url }}">{{ title }}</a></li>
{% endfor %}
</ul>
</nav>
</header>
<div class="page">
{% block body %}{% endblock %}
</div>
<footer>
&copy; Copyright 2019 by L3D.
</footer>
</body>