initialisation finale

This commit is contained in:
yann64
2023-10-16 10:26:38 +02:00
parent 51b57c647c
commit 1d0c9c12bb
16 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<div class="row row-cols-1 g-4">
{{ range .Site.Taxonomies.tags.featured }}
<div class="col">
<div class="card">
<div class="card-body">
<h4 class="card-title">
<a class="stretched-link text-primary text-decoration-none" href="{{ .Permalink }}">
{{ .Title }}
</a>
</h4>
<p class="text-text">
{{ with .Params.description }}
{{ . }}
{{ else }}
{{ .Summary | truncate 400 }}
{{ end }}
</p>
<p class="text-text text-muted">
<small>
{{ .Lastmod | time.Format ":date_long" }}
</small>
</p>
</div>
</div>
</div>
{{ end }}
</div>