You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
48 lines
1.4 KiB
7 years ago
|
<div class='contain-to-grid sticky transparent'>
|
||
|
<nav class='top-bar' data-options='sticky_on: large' data-topbar=''>
|
||
|
<ul class='title-area'>
|
||
|
<li class="">
|
||
|
<h1>
|
||
|
<a href='{{site.url}}/index.html'>
|
||
|
<span>L.</span>avar
|
||
|
</a>
|
||
|
</h1>
|
||
|
</li>
|
||
|
</ul>
|
||
|
<div id="menu-toggler" class="right">
|
||
|
<a href='#'>
|
||
|
<i class="icon-arrows-hamburger-2"></i>
|
||
|
</a>
|
||
|
</div>
|
||
|
<section class='top-bar-section closed'>
|
||
|
<ul class='right'>
|
||
|
|
||
|
{% for item in site.data.nav %}
|
||
|
{% if item.section_id == page.section_id %}
|
||
|
{% assign active_class = "active" %}
|
||
|
{% else %}
|
||
|
{% assign active_class = "" %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% if item.children %}
|
||
|
<li class="has-dropdown {{active_class}}">
|
||
|
<a href="{{site.url}}/{{ item.path }}">{{ item.name }}</a>
|
||
|
<ul class='dropdown'>
|
||
|
{% for child in item.children %}
|
||
|
<li>
|
||
|
<a href="{{site.url}}/{{ child.path }}">{{ child.name }}</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</li>
|
||
|
{% else %}
|
||
|
<li class="{{active_class}}">
|
||
|
<a href="{{site.url}}/{{ item.path }}">{{ item.name }}</a>
|
||
|
</li>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
|
||
|
</ul>
|
||
|
</section>
|
||
|
</nav>
|
||
|
</div>
|