summaryrefslogtreecommitdiffstats
path: root/askbot/templates/widgets/header.html
blob: 52e528bcc43f1ea0c543d0da9fbee53aca6512d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- template header.html -->
{% import "macros.html" as macros %}
<div 
    id="header"
    class="{% if settings.SHOW_LOGO %}with-logo{% else %}without-logo{% endif %}"
>
    <div class="content-wrapper">
        <div id="userToolsNav">
            {% include "widgets/user_navigation.html" %}
        </div>
        {% if settings.SHOW_LOGO %}
            {% include "widgets/logo.html" %}
        {% endif %}
        <div id="metaNav">
            {% include "widgets/meta_nav.html" %}
        </div>
        <div class="clean"></div>
    </div>
</div>
<!-- end template header.html -->