Téléverser les fichiers vers "Theme-Bento/layouts/partials"

This commit is contained in:
Bateast 2025-03-09 15:07:50 +00:00
parent 759388c3db
commit f955919892
5 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<div class="bento-grid">
{{ range $index, $element := .Pages }}
{{ $size := index (slice "size-1" "size-2" "size-3" "size-4" "size-5") (mod $index 5) }}
<article class="bento-item {{ $size }}" style="--order: {{ $index }}">
<a href="{{ .Permalink }}" class="bento-link">
{{ if .Params.image }}
<div class="bento-image">
<img src="{{ .Params.image }}" alt="{{ .Title }}">
</div>
{{ end }}
<div class="bento-content">
<h2>{{ .Title }}</h2>
{{ with .Params.categories }}
<div class="post-meta">
{{ range . }}
<span class="category">{{ . }}</span>
{{ end }}
</div>
{{ end }}
<p>{{ .Summary }}</p>
</div>
</a>
</article>
{{ end }}
</div>

View File

@ -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" . }}

View File

@ -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 }}

View File

@ -0,0 +1,7 @@
<!-- Scripts -->
<script src="{{ "js/typewriter.js" | relURL }}"></script>
<script src="{{ "js/skills.js" | relURL }}"></script>
<script>
// Vérification que les scripts sont chargés
console.log('Scripts loaded');
</script>

View File

@ -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 }}