31 lines
895 B
HTML
31 lines
895 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<link rel="stylesheet" href="../static/Styles/header.css">
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
{% for item in nav.top %}
|
|
<li {{ 'class=active' if item.is_active else '' }}>
|
|
<a href="{{ item.url }}">
|
|
{{ item.label }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
|
|
<div class="heading">
|
|
<img src="../static/img/header/wassertropfen.png" alt="" class="title-img">
|
|
|
|
<h1>{{ translater.getTranslation("Irrigation") }}-<br>{{ translater.getTranslation("system") }}</h1>
|
|
</div>
|
|
|
|
<img src="../static/img/header/blumenbeet.jpg" alt="" class="header-img">
|
|
|
|
</header>
|
|
</body>
|
|
</html> |