2020-01-30 01:48:13 +08:00
|
|
|
{% capture logo_path %}{{ site.logo }}{% endcapture %}
|
2019-01-15 09:07:56 -05:00
|
|
|
|
2016-03-10 13:06:59 -05:00
|
|
|
<div class="masthead">
|
2016-04-03 21:23:24 -04:00
|
|
|
<div class="masthead__inner-wrap">
|
|
|
|
<div class="masthead__menu">
|
|
|
|
<nav id="site-nav" class="greedy-nav">
|
2019-01-23 20:05:17 -05:00
|
|
|
{% unless logo_path == empty %}
|
2021-03-03 23:00:20 +08:00
|
|
|
<a class="site-logo" href="{{ '/' | relative_url }}"><img src="{{ logo_path | relative_url }}" alt="{{ site.masthead_title | default: site.title }}"></a>
|
2019-01-23 20:05:17 -05:00
|
|
|
{% endunless %}
|
2019-07-17 11:46:37 -04:00
|
|
|
<a class="site-title" href="{{ '/' | relative_url }}">
|
|
|
|
{{ site.masthead_title | default: site.title }}
|
|
|
|
{% if site.subtitle %}<span class="site-subtitle">{{ site.subtitle }}</span>{% endif %}
|
|
|
|
</a>
|
2016-04-03 21:23:24 -04:00
|
|
|
<ul class="visible-links">
|
2018-08-13 14:00:39 +02:00
|
|
|
{%- for link in site.data.navigation.main -%}
|
2017-12-05 01:14:39 +05:30
|
|
|
<li class="masthead__menu-item">
|
2020-03-07 04:37:07 +08:00
|
|
|
<a href="{{ link.url | relative_url }}"{% if link.description %} title="{{ link.description }}"{% endif %}>{{ link.title }}</a>
|
2017-12-05 01:14:39 +05:30
|
|
|
</li>
|
2018-08-13 14:00:39 +02:00
|
|
|
{%- endfor -%}
|
2016-04-03 21:23:24 -04:00
|
|
|
</ul>
|
2017-12-07 08:56:14 -05:00
|
|
|
{% if site.search == true %}
|
|
|
|
<button class="search__toggle" type="button">
|
2019-01-01 18:33:51 -05:00
|
|
|
<span class="visually-hidden">{{ site.data.ui-text[site.locale].search_label | default: "Toggle search" }}</span>
|
2021-06-23 08:06:03 -04:00
|
|
|
<i class="fas fa-search"></i>
|
2017-12-07 08:56:14 -05:00
|
|
|
</button>
|
|
|
|
{% endif %}
|
2018-01-09 13:56:09 -05:00
|
|
|
<button class="greedy-nav__toggle hidden" type="button">
|
2019-01-01 18:33:51 -05:00
|
|
|
<span class="visually-hidden">{{ site.data.ui-text[site.locale].menu_label | default: "Toggle menu" }}</span>
|
2017-10-04 11:10:41 -04:00
|
|
|
<div class="navicon"></div>
|
|
|
|
</button>
|
2016-04-03 21:23:24 -04:00
|
|
|
<ul class="hidden-links hidden"></ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
2016-03-21 16:01:19 -04:00
|
|
|
</div>
|
2018-08-13 14:00:39 +02:00
|
|
|
</div>
|