This repository has been archived on 2021-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
theme-geeklab/layouts/_default/baseof.html

40 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="de">
{{- partial "head.html" . -}}
<body>
<header>
<div class="site-header">
<span class="site-header__icon"><i class="fas fa-flask"></i></span>
<span class="site-header__title">Geeklabor</span>
<span class="site-header__description">Linux und Open Source Blog</span>
</div>
<div class="site-nav__mobile" onclick="toogleClass('default-menu');">
<span class="site-nav__button">Menu</span>
</div>
<nav class="site-nav">
<ul class="site-nav__list">
{{ $currentPage := .Permalink }}
<li><a class="site-nav__button {{- if eq $currentPage (printf "%s" .Site.BaseURL) }} is-active {{- end }}" href="{{ .Site.BaseURL }}">Blog</a></li>
{{ range $name, $taxonomy := .Site.Taxonomies.categories }}
{{ with $.Site.GetPage (printf "/categories/%s" $name) }}
<li><a class="site-nav__button {{ if eq $currentPage .Permalink }} is-active {{ end }}" href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
{{ end }}
</ul>
</nav>
</header>
<div class="site-wrapper">
<main class="site-content">
{{ block "main" . }}{{ end }}
</main>
{{- partial "footer.html" . -}}
</div>
<link rel="stylesheet" type="text/css" href="{{ "default.min.css" | relURL }}" />
<link rel="stylesheet" type="text/css" href="{{ "_tool/fontawesome/css/all.min.css" | relURL }}" />
</body>
</html>