2018-10-23 01:15:50 -04:00
|
|
|
<header id="site-header" class="animated slideInUp faster">
|
|
|
|
<div class="hdr-wrapper section-inner">
|
|
|
|
<div class="hdr-left">
|
|
|
|
<div class="site-branding">
|
|
|
|
<a href="{{.Site.BaseURL}}">{{ .Site.Title }}</a>
|
|
|
|
</div>
|
|
|
|
<nav class="site-nav hide-in-mobile">
|
|
|
|
{{- range .Site.Menus.main }}
|
2018-12-28 02:32:03 -05:00
|
|
|
<a href="{{ .URL | absLangURL}}">{{ .Name }}</a>
|
2018-10-23 01:15:50 -04:00
|
|
|
{{- end }}
|
|
|
|
</nav>
|
|
|
|
</div>
|
2018-12-11 11:02:36 -05:00
|
|
|
<div class="hdr-right hdr-icons">
|
2018-12-12 06:52:58 -05:00
|
|
|
{{ with .Params.featuredImg -}}
|
2018-12-31 02:20:34 -05:00
|
|
|
<button class="hdr-btn" onclick="showFeaturedImg()" title="{{i18n "featuredImage"}}"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-image"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg></button>
|
2018-12-11 11:02:36 -05:00
|
|
|
{{- end }}
|
2018-12-28 09:52:23 -05:00
|
|
|
{{- with .Params.toc -}}
|
2018-12-31 02:20:34 -05:00
|
|
|
<button class="hdr-btn desktop-only-ib" onclick="toggleToc()" title="{{i18n "tableOfContents"}}"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-list"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3" y2="6"></line><line x1="3" y1="12" x2="3" y2="12"></line><line x1="3" y1="18" x2="3" y2="18"></line></svg></button>
|
2018-12-28 09:52:23 -05:00
|
|
|
{{- end }}
|
2018-12-11 11:02:36 -05:00
|
|
|
{{- with .Site.Params.social -}}
|
|
|
|
<span class="hdr-social hide-in-mobile">{{ partialCached "social-icons.html" . }}</span>
|
|
|
|
{{- end -}}
|
2018-12-31 02:20:34 -05:00
|
|
|
<button id="menu-btn" class="hdr-btn" title="{{i18n "menu"}}"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg></button>
|
2018-10-23 01:15:50 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2018-12-31 01:29:07 -05:00
|
|
|
<div id="mobile-menu" class="animated fast">
|
2018-10-23 01:15:50 -04:00
|
|
|
<ul>
|
|
|
|
{{- range .Site.Menus.main }}
|
2018-12-28 02:32:03 -05:00
|
|
|
<li><a href="{{ .URL | absLangURL }}">{{ .Name }}</a></li>
|
2018-10-23 01:15:50 -04:00
|
|
|
{{- end }}
|
|
|
|
</ul>
|
2018-12-11 11:02:36 -05:00
|
|
|
</div>
|