vmems-website/layouts/actualites/list.html

49 lines
2 KiB
HTML
Raw Normal View History

2023-10-28 08:20:52 +00:00
{{ define "main" }}
<main class="container">
<h1 class="page-title">{{ .Title }}</h1>
{{ with .Content }}
<div>{{ . }}</div>
{{ end }}
2023-10-28 08:20:52 +00:00
<div class="items">
{{ range .Paginator.Pages }}
<div class="card mb-3" style="max-width: 1000px;">
<div class="row g-0">
<a href="{{ .RelPermalink }}" class="col-md-5">
{{ $featuredImage := (resources.Get (printf "%s" ("images/cycle_path_sun.jpg" | safeURL))) }}
2023-10-28 08:20:52 +00:00
{{ if .Params.featured_image }}
{{ $featuredImage = .Resources.GetMatch (.Params.featured_image.src | safeURL) }}
{{ end }}
{{ $featuredImage := $featuredImage.Process "fill 500x350" }}
<img class="img-fluid rounded-start" alt="{{ .Params.featured_image.alt }}" src="{{ $featuredImage.RelPermalink }}" />
2023-10-28 08:20:52 +00:00
</a>
<div class="col-md-7">
<div class="card-body px-4">
<h5 class="card-title mb-3">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h5>
<p class="card-text">
{{ .Summary }}
</p>
<p class="card-text">
<small class="text-body-secondary">
2023-10-28 08:20:52 +00:00
{{ $date := .Date.Format "2006-01-02" }}
<time datetime="{{ $date }}">
{{ time.Format "2 January 2006" $date }}
</time>
</small>
2023-10-28 08:20:52 +00:00
</p>
<p class="card-text text-end">
<a href="{{ .RelPermalink }}"><small class="mr-4 text-body-secondary">Lire plus</small></a>
</p>
</div>
2023-10-28 08:20:52 +00:00
</div>
</div>
</div>
{{ end }}
</div>
2023-10-28 08:20:52 +00:00
{{ partial "pagination.html" . }}
</main>
{{ end }}