From 2ad28cbbfb4287164e7877923291bb18519688fc Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 9 Jan 2026 08:07:03 -0500 Subject: replace repo contents with revamped site --- themes/aoidh/layouts/_partials/footer.html | 17 +++++++++++++ themes/aoidh/layouts/_partials/head.html | 6 +++++ themes/aoidh/layouts/_partials/header.html | 1 + themes/aoidh/layouts/_partials/menu.html | 40 ++++++++++++++++++++++++++++++ themes/aoidh/layouts/_partials/terms.html | 23 +++++++++++++++++ 5 files changed, 87 insertions(+) create mode 100644 themes/aoidh/layouts/_partials/footer.html create mode 100644 themes/aoidh/layouts/_partials/head.html create mode 100644 themes/aoidh/layouts/_partials/header.html create mode 100644 themes/aoidh/layouts/_partials/menu.html create mode 100644 themes/aoidh/layouts/_partials/terms.html (limited to 'themes/aoidh/layouts') 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 @@ +
+

+{{- 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 -}}–{{- $lastMod.Year -}} + {{- else -}} + Copyright {{ $epoch.Year -}} + {{- end -}} + {{- end -}} +{{- end -}} +{{- with .Site.Params.author.name -}} + , {{ . }} +{{- end -}} +. All rights reserved.

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 @@ + + +{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} +{{- with resources.Get "aoidh.css" }} + +{{- 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 }} + +{{- end }} + +{{- define "_partials/inline/menu/walk.html" }} + {{- $page := .page }} + {{- range .menuEntries }} +
  • + {{ .Name }} + {{- with .Children }} + + {{- end }} +
  • + {{- 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 }} +
    +
    {{ $label }}:
    + +
    +{{- end }} -- cgit v1.2.3