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, 0 insertions, 87 deletions
diff --git a/themes/aoidh/layouts/_partials/footer.html b/themes/aoidh/layouts/_partials/footer.html
deleted file mode 100644
index 91d4a34..0000000
--- a/themes/aoidh/layouts/_partials/footer.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<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
deleted file mode 100644
index c72c8c5..0000000
--- a/themes/aoidh/layouts/_partials/head.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<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
deleted file mode 100644
index 8995308..0000000
--- a/themes/aoidh/layouts/_partials/header.html
+++ /dev/null
@@ -1 +0,0 @@
-{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
diff --git a/themes/aoidh/layouts/_partials/menu.html b/themes/aoidh/layouts/_partials/menu.html
deleted file mode 100644
index ba80749..0000000
--- a/themes/aoidh/layouts/_partials/menu.html
+++ /dev/null
@@ -1,40 +0,0 @@
-{{- /*
-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
deleted file mode 100644
index 8a6ebec..0000000
--- a/themes/aoidh/layouts/_partials/terms.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{- /*
-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 }}