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

<div id="left-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>

<div id="right-header">
   <div id="image-gradient">
   </div>
</div>
</header>