From f955919892d02db57f6c038a37603a6979edc078 Mon Sep 17 00:00:00 2001 From: Bateast Date: Sun, 9 Mar 2025 15:07:50 +0000 Subject: [PATCH] =?UTF-8?q?T=C3=A9l=C3=A9verser=20les=20fichiers=20vers=20?= =?UTF-8?q?"Theme-Bento/layouts/partials"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Theme-Bento/layouts/partials/bento-grid.html | 25 ++++++++++ Theme-Bento/layouts/partials/head.html | 5 ++ Theme-Bento/layouts/partials/menu.html | 51 ++++++++++++++++++++ Theme-Bento/layouts/partials/scripts.html | 7 +++ Theme-Bento/layouts/partials/terms.html | 23 +++++++++ 5 files changed, 111 insertions(+) create mode 100644 Theme-Bento/layouts/partials/bento-grid.html create mode 100644 Theme-Bento/layouts/partials/head.html create mode 100644 Theme-Bento/layouts/partials/menu.html create mode 100644 Theme-Bento/layouts/partials/scripts.html create mode 100644 Theme-Bento/layouts/partials/terms.html diff --git a/Theme-Bento/layouts/partials/bento-grid.html b/Theme-Bento/layouts/partials/bento-grid.html new file mode 100644 index 0000000..d1f3f6f --- /dev/null +++ b/Theme-Bento/layouts/partials/bento-grid.html @@ -0,0 +1,25 @@ +
+ {{ range $index, $element := .Pages }} + {{ $size := index (slice "size-1" "size-2" "size-3" "size-4" "size-5") (mod $index 5) }} + + {{ end }} +
diff --git a/Theme-Bento/layouts/partials/head.html b/Theme-Bento/layouts/partials/head.html new file mode 100644 index 0000000..02c2240 --- /dev/null +++ b/Theme-Bento/layouts/partials/head.html @@ -0,0 +1,5 @@ + + +{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} +{{ partialCached "head/css.html" . }} +{{ partialCached "head/js.html" . }} diff --git a/Theme-Bento/layouts/partials/menu.html b/Theme-Bento/layouts/partials/menu.html new file mode 100644 index 0000000..7183180 --- /dev/null +++ b/Theme-Bento/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 }} + +{{- 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 }} +
  • + {{ $name }} + {{- with .Children }} + + {{- end }} +
  • + {{- end }} +{{- end }} diff --git a/Theme-Bento/layouts/partials/scripts.html b/Theme-Bento/layouts/partials/scripts.html new file mode 100644 index 0000000..c6a99dd --- /dev/null +++ b/Theme-Bento/layouts/partials/scripts.html @@ -0,0 +1,7 @@ + + + + diff --git a/Theme-Bento/layouts/partials/terms.html b/Theme-Bento/layouts/partials/terms.html new file mode 100644 index 0000000..8a6ebec --- /dev/null +++ b/Theme-Bento/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 }}