diff options
Diffstat (limited to 'themes/robson/layouts/_partials')
| -rw-r--r-- | themes/robson/layouts/_partials/footer.html | 4 | ||||
| -rw-r--r-- | themes/robson/layouts/_partials/head.html | 5 | ||||
| -rw-r--r-- | themes/robson/layouts/_partials/head/css.html | 12 | ||||
| -rw-r--r-- | themes/robson/layouts/_partials/head/js.html | 16 | ||||
| -rw-r--r-- | themes/robson/layouts/_partials/header.html | 9 | ||||
| -rw-r--r-- | themes/robson/layouts/_partials/menu.html | 51 | ||||
| -rw-r--r-- | themes/robson/layouts/_partials/terms.html | 23 |
7 files changed, 120 insertions, 0 deletions
diff --git a/themes/robson/layouts/_partials/footer.html b/themes/robson/layouts/_partials/footer.html new file mode 100644 index 0000000..a45e654 --- /dev/null +++ b/themes/robson/layouts/_partials/footer.html @@ -0,0 +1,4 @@ +<div> + <p lang="la"><i>Tu ne cede malis, sed contra audentior ito</i></p> +</div> +<a href="https://notbyai.fyi/hi/not-by-ai/"><img src="/svg/Written-By-Humans-Not-By-AI-Badge-black.svg"></img></a> diff --git a/themes/robson/layouts/_partials/head.html b/themes/robson/layouts/_partials/head.html new file mode 100644 index 0000000..02c2240 --- /dev/null +++ b/themes/robson/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/themes/robson/layouts/_partials/head/css.html b/themes/robson/layouts/_partials/head/css.html new file mode 100644 index 0000000..add502d --- /dev/null +++ b/themes/robson/layouts/_partials/head/css.html @@ -0,0 +1,12 @@ +{{ $cssFiles := slice "css/main.css" "css/colorscheme.css" }} +{{ range $cssFiles }} + {{- with resources.Get . }} + {{- if hugo.IsDevelopment }} + <link rel="stylesheet" href="{{ .RelPermalink }}"> + {{- else }} + {{- with . | minify | fingerprint }} + <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> + {{- end }} + {{- end }} + {{- end }} +{{ end }} diff --git a/themes/robson/layouts/_partials/head/js.html b/themes/robson/layouts/_partials/head/js.html new file mode 100644 index 0000000..16ffbed --- /dev/null +++ b/themes/robson/layouts/_partials/head/js.html @@ -0,0 +1,16 @@ +{{- with resources.Get "js/main.js" }} + {{- $opts := dict + "minify" (not hugo.IsDevelopment) + "sourceMap" (cond hugo.IsDevelopment "external" "") + "targetPath" "js/main.js" + }} + {{- with . | js.Build $opts }} + {{- if hugo.IsDevelopment }} + <script src="{{ .RelPermalink }}"></script> + {{- else }} + {{- with . | fingerprint }} + <script src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script> + {{- end }} + {{- end }} + {{- end }} +{{- end }} diff --git a/themes/robson/layouts/_partials/header.html b/themes/robson/layouts/_partials/header.html new file mode 100644 index 0000000..21e7be6 --- /dev/null +++ b/themes/robson/layouts/_partials/header.html @@ -0,0 +1,9 @@ +<h1><a href="/">{{ site.Title }}</a></h1> +<div class="right"> + {{ partial "menu.html" (dict "menuID" "main" "page" .) }} + <div class="socials"> + <a href="https://git.robson.zip"> + <img class="iconGit" src="/icons/git.svg"> + </a> + </div> +</div> diff --git a/themes/robson/layouts/_partials/menu.html b/themes/robson/layouts/_partials/menu.html new file mode 100644 index 0000000..14245b5 --- /dev/null +++ b/themes/robson/layouts/_partials/menu.html @@ -0,0 +1,51 @@ +{{- /* +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 }} + {{- $attrs := dict "href" .URL }} + {{- if $page.IsMenuCurrent .Menu . }} + {{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }} + {{- else if $page.HasMenuCurrent .Menu .}} + {{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }} + {{- end }} + {{- $name := .Name }} + {{- with .Identifier }} + {{- with T . }} + {{- $name = . }} + {{- end }} + {{- end }} + <li> + <a + {{- range $k, $v := $attrs }} + {{- with $v }} + {{- printf " %s=%q" $k $v | safeHTMLAttr }} + {{- end }} + {{- end -}} + >{{ $name }}</a> + {{- with .Children }} + <ul> + {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }} + </ul> + {{- end }} + </li> + {{- end }} +{{- end }} diff --git a/themes/robson/layouts/_partials/terms.html b/themes/robson/layouts/_partials/terms.html new file mode 100644 index 0000000..8a6ebec --- /dev/null +++ b/themes/robson/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 }} |