Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@ -0,0 +1,26 @@ |
|||
{% 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' %}" |
|||
/> |