557034f362
rocksdb hit the problem that nuclide had. https://github.com/facebook/nuclide/issues/789 https://github.com/facebook/nuclide/pull/793
29 lines
999 B
HTML
29 lines
999 B
HTML
<div id="fixed_header" class="fixedHeaderContainer{% if include.alwayson %} visible{% endif %}">
|
|
<div class="headerWrapper wrapper">
|
|
<header>
|
|
<a href="{{ site.url }}/">
|
|
<img src="/static/logo.svg">
|
|
<h2>{{ site.title }}</h2>
|
|
</a>
|
|
|
|
<div class="navigationWrapper navigationFull" id="flat_nav">
|
|
<nav class="navigation">
|
|
<ul>
|
|
{% for item in site.data.nav %}
|
|
<li class="navItem{% if page.collection == item.category or page.category == item.category %} navItemActive{% endif %}">
|
|
<a href="{{ item.href }}">{{ item.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% if site.searchconfig %}
|
|
{% include nav_search.html inputselector="search_input" %}
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
<div class="navigationWrapper navigationSlider" id="navigation_wrap">
|
|
{% include nav/header_nav.html %}
|
|
</div>
|
|
</header>
|
|
</div>
|
|
</div>
|