summaryrefslogtreecommitdiff
path: root/templates/partials/header.html.twig
blob: 0c02cfeaaa776c49ea91212bb864ca6e2f54f5fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
		<div class="header">
            {% if page.header.icon %}
			    <span class=icon>{{page.header.icon}}</span>
            {% else %}
                <span class=icon>web</span>
            {% endif %}
            {% if page.url != "/" %}
                <a href="/" style="color:white;">{{site.title|e}}</a>
            {% endif %}
            {% if page.parent.url != "/" %}
                <a href="{{ page.parent.url }}">
                    <span class="icon" style="color: white;">close</span>
                </a>
            {% else %}
            <span class="icon" style="color:transparent;">web</span>
            {% endif %}
		</div>