summaryrefslogtreecommitdiffstats
path: root/themes/aoidh/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'themes/aoidh/layouts')
-rw-r--r--themes/aoidh/layouts/_partials/footer.html17
-rw-r--r--themes/aoidh/layouts/_partials/head.html6
-rw-r--r--themes/aoidh/layouts/_partials/header.html1
-rw-r--r--themes/aoidh/layouts/_partials/menu.html40
-rw-r--r--themes/aoidh/layouts/_partials/terms.html23
5 files changed, 87 insertions, 0 deletions
diff --git a/themes/aoidh/layouts/_partials/footer.html b/themes/aoidh/layouts/_partials/footer.html
new file mode 100644
index 0000000..91d4a34
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/footer.html
@@ -0,0 +1,17 @@
+<hr>
+<p>
+{{- with index (sort .Site.RegularPages "Date" "asc") 0 -}}
+ {{ $epoch := .Date }}
+ {{- with index (sort .Site.Pages "Lastmod" "desc") 0 -}}
+ {{ $lastMod := .Lastmod }}
+ {{- if gt $lastMod.Year $epoch.Year -}}
+ Copyright {{ $epoch.Year -}}&ndash;{{- $lastMod.Year -}}
+ {{- else -}}
+ Copyright {{ $epoch.Year -}}
+ {{- end -}}
+ {{- end -}}
+{{- end -}}
+{{- with .Site.Params.author.name -}}
+ , {{ . }}
+{{- end -}}
+. All rights reserved.</p>
diff --git a/themes/aoidh/layouts/_partials/head.html b/themes/aoidh/layouts/_partials/head.html
new file mode 100644
index 0000000..c72c8c5
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/head.html
@@ -0,0 +1,6 @@
+<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>
+{{- with resources.Get "aoidh.css" }}
+ <link rel="stylesheet" href="{{ .RelPermalink }}">
+{{- end }}
diff --git a/themes/aoidh/layouts/_partials/header.html b/themes/aoidh/layouts/_partials/header.html
new file mode 100644
index 0000000..8995308
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/header.html
@@ -0,0 +1 @@
+{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
diff --git a/themes/aoidh/layouts/_partials/menu.html b/themes/aoidh/layouts/_partials/menu.html
new file mode 100644
index 0000000..ba80749
--- /dev/null
+++ b/themes/aoidh/layouts/_partials/menu.html
@@ -0,0 +1,40 @@
+{{- /*
+Renders a menu for the given menu ID.
+
+@context {page} page The current page.
+@context {string} menuID The menu ID.
+
+@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }}
+*/}}
+
+{{- $page := .page }}
+{{- $menuID := .menuID }}
+
+{{- with index site.Menus $menuID }}
+ <nav>
+ <ul>
+ {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
+ </ul>
+ </nav>
+{{- end }}
+
+{{- define "_partials/inline/menu/walk.html" }}
+ {{- $page := .page }}
+ {{- range .menuEntries }}
+ <li
+ {{- if $page.IsMenuCurrent .Menu . -}}
+ {{- printf " class=%q" "nav-active" | safeHTMLAttr -}}
+ {{- else if $page.HasMenuCurrent .Menu . -}}
+ {{- printf " class=%q" "nav-ancestor" | safeHTMLAttr -}}
+ {{- end -}}>
+ <a
+ {{ printf "href=%q" .URL | safeHTMLAttr }}
+ >{{ .Name }}</a>
+ {{- with .Children }}
+ <ul>
+ {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
+ </ul>
+ {{- end }}
+ </li>
+ {{- end }}
+{{- end }}
diff --git a/themes/aoidh/layouts/_partials/terms.html b/themes/aoidh/layouts/_partials/terms.html
new file mode 100644
index 0000000..8a6ebec
--- /dev/null
+++ b/themes/aoidh/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 taxonomy.
+
+@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 }}