sito-hackit-18/themes/hackit0x15/templates/includes/banner.html

22 lines
684 B
HTML
Raw Normal View History

2018-06-04 18:03:07 +02:00
<div class="banner">
2018-06-04 19:11:32 +02:00
2018-06-04 18:03:07 +02:00
<header id="header">
<ul class="header-ul-menu">
<li class="header-menu"><a class="brand-title" href="index.html">{{ SITENAME }}</a></li>
2018-06-04 19:11:32 +02:00
{% block languages %}
{% if page %}
{% import 'includes/translations.html' as translations with context %}
<li style="float:right;padding-right:5px;color:blue;">
{{ translations.translations_for(page,label=False) }}
</li>
{% endif %}
{% endblock languages %}
2018-06-04 18:03:07 +02:00
</ul>
</header>
{% if SITELOGO %}
2018-06-04 18:43:02 +02:00
<img src="{{ SITEURL }}/{{THEME_STATIC_DIR}}/{{ SITELOGO }}" width="{{ SITELOGO_SIZE }}"/> {% endif %}
2018-04-12 19:17:29 +02:00
2018-06-04 18:03:07 +02:00
2018-06-04 19:11:32 +02:00
</div>