This commit is contained in:
infidel
2022-11-14 23:16:26 +07:00
commit b6f9e18e61
123 changed files with 66289 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<header class="intro-and-nav" role="banner">
<div>
<div class="intro">
<a
class="logo"
href="{{ .Site.BaseURL }}"
aria-label="{{ .Site.Title }} home page"
>
{{ with .Site.Params.navTitleText }}
<h2>{{ . }}</h2>
{{ else }}
<img
src="{{ "images/logo.svg" | relURL }}"
alt="{{ .Site.Params.logoAlt | default "Logo" }}"
>
{{ end }}
</a>
<!--
<p class="library-desc">
{{ with .Site.Params.description }} {{ . | markdownify }} {{ end }}
</p>
-->
<h3> {{ with .Site.Params.description }} {{ . }} {{ end}} </h3>
</div>
{{ partial "nav.html" . }}
{{ if eq .Site.Params.moveFooterToHeader true }}
{{ partial "footer.html" . }}
{{ end }}
</div>
</header>