1<div id="fixed_header" class="fixedHeaderContainer{% if include.alwayson %} visible{% endif %}">
2  <div class="headerWrapper wrapper">
3    <header>
4      <a href="{{ '/' | absolute_url }}">
5        <img src="{{ '/static/logo.svg' }}">
6        <h2>{{ site.title }}</h2>
7      </a>
8
9      <div class="navigationWrapper navigationFull" id="flat_nav">
10        <nav class="navigation">
11          <ul>
12            {% for item in site.data.nav %}
13            <li class="navItem{% if page.collection == item.category or page.category == item.category %} navItemActive{% endif %}">
14              {% if item.category == "external" %}
15                <a href="{{ item.href }}">{{ item.title }}</a>
16              {% else %}
17                {% comment %}
18                I removed `relative_url` from here for now until the problem we are having with
19                GitHub pages is resolved. Yes, I know this is exactly the same as the if above.
20                See: https://github.com/facebook/rocksdb/commit/800e51553ee029f29581f7f338cbc988c7f6da62
21                {% endcomment %}
22                <a href="{{ item.href }}">{{ item.title }}</a>
23              {% endif %}
24            </li>
25            {% endfor %}
26            {% if site.searchconfig %}
27            {% include nav_search.html inputselector="search_input" %}
28            {% endif %}
29          </ul>
30        </nav>
31      </div>
32      <div class="navigationWrapper navigationSlider" id="navigation_wrap">
33        {% include nav/header_nav.html %}
34      </div>
35    </header>
36  </div>
37</div>
38