Web M&M
https://mam.matfyz.cz
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.
26 lines
942 B
26 lines
942 B
{% load staticfiles %}
|
|
<img class="logo"
|
|
{% for item in sitetree_items %}
|
|
{% if item.is_active or item.in_current_branch %}
|
|
{% if forloop.counter == 1 %}
|
|
src="{% static 'images/logo_1.svg' %}"
|
|
{% endif %}
|
|
{% if forloop.counter == 2 %}
|
|
src="{% static 'images/logo_2.svg' %}"
|
|
{% endif %}
|
|
{% if forloop.counter == 3 %}
|
|
src="{% static 'images/logo_3.svg' %}"
|
|
{% endif %}
|
|
{% if forloop.counter == 4 %}
|
|
src="{% static 'images/logo_4.svg' %}"
|
|
{% endif %}
|
|
{% if forloop.counter == 5 %}
|
|
src="{% static 'images/logo_5.svg' %}"
|
|
{% endif %}
|
|
{% if forloop.counter == 6 %}
|
|
src="{% static 'images/logo_6.svg' %}"
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
src="{% static 'images/logo.svg' %}"
|
|
/>
|