aboutsummaryrefslogtreecommitdiff
path: root/templates/partials/header.html
blob: 3400a2b4d5cd616db49976f8904ef9c48e73ae6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<header>

<!-- if "title" is set in config.toml, display site name -->
{% if config.title %}
<div class="header-item">
   <h1 id="site-title">{{ config.title }}</h1>
</div>
{% endif %}

<!-- include navigation bar -->
<nav class="header-item">
   {% include "partials/nav.html" %}
</nav>

</header>