You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
482 B

{% load menu_tags %}
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
<h5 class="my-0 mr-md-auto font-weight-normal"><a href="/"><img src="..\..\media\original_images\logo.png" alt="" style="width: 70px;"></a></h5>
<nav class="my-2 my-md-0 mr-md-3">
{% for item in menu_items %}
<a class="p-2 text-dark" href="{{ item.href }}">{{ item.text }}</a>
{% endfor %}
</nav>
</div>