-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmasthead.html
More file actions
29 lines (29 loc) · 1.26 KB
/
Copy pathmasthead.html
File metadata and controls
29 lines (29 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% include base_path %}
<div class="masthead">
<div class="masthead__inner-wrap">
<div class="masthead__menu">
<nav id="site-nav" class="greedy-nav">
<button><span class="navicon"></span></button>
<ul class="visible-links">
<li class="masthead__menu-item masthead__menu-item--lg persist {% if page.url == '/' or page.url == '/index.html' %}selected{% endif %}">
<a href="{{ base_path }}/">{{ site.title }}</a>
</li>
{% for link in site.data.navigation.main %}
{% if link.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = base_path %}
{% endif %}
<li class="masthead__menu-item {% if page.url contains link.url and link.url != '/' %}selected{% endif %}">
<a href="{{ domain }}{{ link.url }}">{{ link.title }}</a>
</li>
{% endfor %}
<!--<li id="theme-toggle" class="masthead__menu-item persist tail">
<a role="button" aria-labelledby="theme-icon"><i id="theme-icon" class="fa-solid fa-sun" aria-hidden="true" title="toggle theme"></i></a>
</li>-->
</ul>
<ul class="hidden-links hidden"></ul>
</nav>
</div>
</div>
</div>