-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathheader.html
More file actions
19 lines (19 loc) · 1015 Bytes
/
header.html
File metadata and controls
19 lines (19 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<header role="banner">
<nav class="navbar navbar-light bg-faded" role="navigation">
<div class="container">
<a class="navbar-brand" href="/">
<img src="{{ '/assets/img/logo.png' | prepend: site.baseurl }}" alt="{{ site.title }}">
</a>
<ul class="nav navbar-nav pull-right">
{% for item in site.data.navigation %}
<li class="nav-item{% if page.url == item.url %} active{% endif %}">
<a class="nav-link" href="{{ item.url }}"{% if item.title %} title="{{ item.title }}" data-toggle="tooltip" data-placement="bottom" {% endif %}{% if item.external %} target="_blank"{% endif %}>
{% if item.icon %}<span class="fa fa-{{ item.icon }}"></span> {% endif %}
{% if item.label %}{{ item.label }}{% endif %}
</a>
</li>
{% endfor %}
</ul>
</div>
</nav>
</header>