diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-01-09 08:07:03 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-01-09 08:07:03 -0500 |
| commit | 2ad28cbbfb4287164e7877923291bb18519688fc (patch) | |
| tree | 7a7dac539d2085cb72cd357246620f7f2021f5e8 /themes/aoidh/layouts | |
| parent | ebf4af075b194229dd1cf3163b1e3cec1f1d3a0d (diff) | |
| download | samanthony.xyz-2ad28cbbfb4287164e7877923291bb18519688fc.zip | |
replace repo contents with revamped site
Diffstat (limited to 'themes/aoidh/layouts')
| -rw-r--r-- | themes/aoidh/layouts/_partials/footer.html | 17 | ||||
| -rw-r--r-- | themes/aoidh/layouts/_partials/head.html | 6 | ||||
| -rw-r--r-- | themes/aoidh/layouts/_partials/header.html | 1 | ||||
| -rw-r--r-- | themes/aoidh/layouts/_partials/menu.html | 40 | ||||
| -rw-r--r-- | themes/aoidh/layouts/_partials/terms.html | 23 |
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 -}}–{{- $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 }} |