Created Navigation Bar and Header
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<link rel="stylesheet" href="../static/Styles/header.css">
|
||||
<meta charset="UTF-8">
|
||||
<title>Bewässerungssystem</title>
|
||||
</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="Tropfen" class="title-img">
|
||||
|
||||
<h1>Bewässerungs-<br>system</h1>
|
||||
</div>
|
||||
|
||||
<img src="../static/img/header/blumenbeet.jpg" alt="Blumenbeet" class="header-img">
|
||||
|
||||
</header>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user