html5-infobeamer-aalen-geek.../templates/layout.html

29 lines
811 B
HTML
Raw Normal View History

2023-11-01 00:00:14 +01:00
<!doctype html>
<meta charset="utf-8">
2023-11-01 01:59:19 +01:00
<!-- <link rel="stylesheet" href="{{ '/static/style.css'|url }}"> -->
2023-11-01 00:00:14 +01:00
<title>{% block title %}Welcome{% endblock %} — voc-info</title>
<body>
<header>
<h1>voc-info</h1>
<nav>
<ul class="nav navbar-nav">
<li{% if this._path == '/' %} class="active"{% endif
%}><a href="{{ '/'|url }}">Welcome</a></li>
{% for href, title in [
['/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>
2023-11-01 01:59:19 +01:00
<div class="page content">
2023-11-01 00:00:14 +01:00
{% block body %}{% endblock %}
</div>
<footer>
&copy; Copyright 2023 by L3D.
</footer>
</body>