Téléverser les fichiers vers "Theme-Bento/layouts/partials"
This commit is contained in:
parent
759388c3db
commit
f955919892
25
Theme-Bento/layouts/partials/bento-grid.html
Normal file
25
Theme-Bento/layouts/partials/bento-grid.html
Normal 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>
|
5
Theme-Bento/layouts/partials/head.html
Normal file
5
Theme-Bento/layouts/partials/head.html
Normal 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" . }}
|
51
Theme-Bento/layouts/partials/menu.html
Normal file
51
Theme-Bento/layouts/partials/menu.html
Normal 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 }}
|
7
Theme-Bento/layouts/partials/scripts.html
Normal file
7
Theme-Bento/layouts/partials/scripts.html
Normal 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>
|
23
Theme-Bento/layouts/partials/terms.html
Normal file
23
Theme-Bento/layouts/partials/terms.html
Normal 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 }}
|
Loading…
x
Reference in New Issue
Block a user