mysteriendrama/templates/navbar.html
2023-07-22 12:13:39 +02:00

19 lines
959 B
HTML

{% load static %}
<header class="dc-deep-purple" >
<div class="dc-container dc-center ">
<div class="dc-container">
<a href="{% url 'homepage' %}"><img src='{% static 'pictures/sigil.jpg' %}' style="height:100px"></a>
</div>
<div class="dc-bar dc-padding-top-24" style="margin:auto" data-fixed-height="40">
<a class="dc-bar-item dc-button dc-light-grey dc-padding dc-border-right dc-round-small" href="{% url 'homepage' %}">Startseite</a>
<a class="dc-bar-item dc-button dc-light-grey dc-padding dc-border-right dc-round-small" href="{% url 'unterstuetzen' %}">Unterstützen</a>
<a class="dc-bar-item dc-button dc-light-grey dc-padding dc-border-right dc-round-small" href="{% url 'ueber' %}">Über Uns</a>
<a class="dc-bar-item dc-button dc-light-grey dc-padding dc-border-right dc-round-small" href="{% url 'drama' %}">Zum Drama</a>
<a class="dc-bar-item dc-button dc-light-grey dc-padding" href="{% url 'kontakt' %}">Kontakt</a>
</div>
</div>
</header>