PodcastLektor/Podcast/templates/layout.html

35 lines
919 B
HTML

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
<title>{% block title %}Welcome{% endblock %} — PodcastLektor</title>
<body>
<header>
<h1>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 id="flex">
<main>
{% block body %}{% endblock %}
</main>
<aside>
{% block aside %}<h1>Widgets</h1>{% endblock %}
</aside>
</div>
<footer>
&copy; Copyright 2022 by Homer S..
</footer>
</body>