first commit

This commit is contained in:
infidel
2022-04-10 15:20:41 +07:00
commit 002cefa80f
112 changed files with 6495 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<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 }}
<h1>{{ . }}</h1>
{{ 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>
</div>
{{ partial "nav.html" . }}
{{ if eq .Site.Params.moveFooterToHeader true }}
{{ partial "footer.html" . }}
{{ end }}
</div>
</header>