summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/baseof.html44
-rw-r--r--layouts/_default/single.html6
-rw-r--r--layouts/index.html5
-rw-r--r--layouts/partials/footer.html1
-rw-r--r--layouts/partials/head.html5
-rw-r--r--layouts/partials/head/css.html9
-rw-r--r--layouts/partials/head/js.html12
-rw-r--r--layouts/partials/header.html10
-rw-r--r--layouts/partials/langmenu.html5
-rw-r--r--layouts/partials/menu.html7
-rw-r--r--layouts/partials/terms.html23
-rw-r--r--layouts/shortcodes/columns.html7
-rw-r--r--layouts/shortcodes/icon.html4
13 files changed, 138 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..3a2c806
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <link rel="icon" href="logo.png" width="192" height="192">
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="https://fonts.googleapis.com/css2?family=Balthazar&display=swap" rel="stylesheet">
+ <link rel="stylesheet" href="/style.css">
+ {{ $title := site.Title }}
+ {{ if not .IsHome }}
+ {{ $title = printf "%s | %s" .Title site.Title }}
+ {{ end }}
+ <title>
+ {{ $title }}
+ </title>
+ </head>
+
+
+ <header>
+ <img src="/logo.png">
+ <div class="topnav">
+ {{ partial "menu.html" . }}
+ </div>
+ <br>
+ </header>
+
+ <body>
+ <div class="box">
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+ </div>
+ </body>
+
+ <body>
+ <div class="contact">
+ </div>
+ </body>
+
+ <footer>
+ <p>Designed by <a style="color:#174372;" href="https://btkoch.xyz">Kocher Web Styling</a></p>
+ </footer>
+</html>
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..c7110a4
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+
+<h1><u>{{ .Title }}</u></h1>
+{{ .Content }}
+
+{{ end }}
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..46c82c0
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,5 @@
+{{ define "main" }}
+
+{{ .Content }}
+
+{{ end }}
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..a7cd916
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1 @@
+<p>Copyright {{ now.Year }}. All rights reserved.</p>
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..02c2240
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,5 @@
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width">
+<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
+{{ partialCached "head/css.html" . }}
+{{ partialCached "head/js.html" . }}
diff --git a/layouts/partials/head/css.html b/layouts/partials/head/css.html
new file mode 100644
index 0000000..91b928d
--- /dev/null
+++ b/layouts/partials/head/css.html
@@ -0,0 +1,9 @@
+{{- with resources.Get "css/main.css" }}
+ {{- if eq hugo.Environment "development" }}
+ <link rel="stylesheet" href="{{ .RelPermalink }}">
+ {{- else }}
+ {{- with . | minify | fingerprint }}
+ <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
+ {{- end }}
+ {{- end }}
+{{- end }}
diff --git a/layouts/partials/head/js.html b/layouts/partials/head/js.html
new file mode 100644
index 0000000..18fe842
--- /dev/null
+++ b/layouts/partials/head/js.html
@@ -0,0 +1,12 @@
+{{- with resources.Get "js/main.js" }}
+ {{- if eq hugo.Environment "development" }}
+ {{- with . | js.Build }}
+ <script src="{{ .RelPermalink }}"></script>
+ {{- end }}
+ {{- else }}
+ {{- $opts := dict "minify" true }}
+ {{- with . | js.Build $opts | fingerprint }}
+ <script src="{{ .RelPermalink }}" integrity="{{- .Data.Integrity }}" crossorigin="anonymous"></script>
+ {{- end }}
+ {{- end }}
+{{- end }}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..31d8f14
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,10 @@
+ <header>
+ <img src="/logo.png">
+ <div class="topnav">
+ <h1>{{ site.Title }}</h1>
+ {{ partial "menu.html" (dict "menuID" "main" "page" .) }}
+ {{ partial "langmenu.html" (dict "languages" .) }}
+ <br>
+ </div>
+ <br>
+ </header>
diff --git a/layouts/partials/langmenu.html b/layouts/partials/langmenu.html
new file mode 100644
index 0000000..356b8f2
--- /dev/null
+++ b/layouts/partials/langmenu.html
@@ -0,0 +1,5 @@
+<ul>
+{{ range $.Site.Home.AllTranslations }}
+<li><a href="{{ .RelPermalink }}">{{ .Language.LanguageName }}</a></li>
+{{ end }}
+</ul>
diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html
new file mode 100644
index 0000000..bac3fe2
--- /dev/null
+++ b/layouts/partials/menu.html
@@ -0,0 +1,7 @@
+<nav aria-label="Main Navigation">
+ <ul>
+ {{ range .Site.Menus.main }}
+ <li><a href="{{ .URL }}">{{ .Name }}</a></li>
+ {{ end }}
+ </ul>
+</nav>
diff --git a/layouts/partials/terms.html b/layouts/partials/terms.html
new file mode 100644
index 0000000..47cf6e4
--- /dev/null
+++ b/layouts/partials/terms.html
@@ -0,0 +1,23 @@
+{{- /*
+For a given taxonomy, renders a list of terms assigned to the page.
+
+@context {page} page The current page.
+@context {string} taxonomy The taxonony.
+
+@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+*/}}
+
+{{- $page := .page }}
+{{- $taxonomy := .taxonomy }}
+
+{{- with $page.GetTerms $taxonomy }}
+ {{- $label := (index . 0).Parent.LinkTitle }}
+ <div>
+ <div>{{ $label }}:</div>
+ <ul>
+ {{- range . }}
+ <li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
+ {{- end }}
+ </ul>
+ </div>
+{{- end }}
diff --git a/layouts/shortcodes/columns.html b/layouts/shortcodes/columns.html
new file mode 100644
index 0000000..536e87e
--- /dev/null
+++ b/layouts/shortcodes/columns.html
@@ -0,0 +1,7 @@
+<div class="md-columns">
+{{ range split .Inner "<--->" }}
+{{ printf "<div class=\"markdown-inner\">" | htmlUnescape | safeHTML }}
+{{ . | safeHTML }}
+{{ printf "</div>" | htmlUnescape | safeHTML }}
+{{ end }}
+</div>
diff --git a/layouts/shortcodes/icon.html b/layouts/shortcodes/icon.html
new file mode 100644
index 0000000..a61fac1
--- /dev/null
+++ b/layouts/shortcodes/icon.html
@@ -0,0 +1,4 @@
+<a href="{{ .Get "link" }}" target="_blank" rel="noopener noreferrer">
+ <img src="{{ .Get "src" }}" alt="{{ .Get "alt" }}" style="width: 30px; height: 30px; font-size: 0; box-shadow: none; display: inline; " />
+</a>
+