{{ define "main" }} <main class="container"> <article class="article"> <h1 class="page-title">{{ .Title }}</h1> <p class="text-small"> {{ with .Date }} <span>Publié le <b><time>{{ . | time.Format ":date_full" }}</time></b>,</span> {{ end }} {{ with .Lastmod }} <span>Mis à jour le <b><time>{{ . | time.Format ":date_full" }}</time></b></span> {{ end }} </p> {{ if .Params.featured_image }} {{ $featuredImage := .Resources.GetMatch (.Params.featured_image.src | safeURL) }} {{ if $featuredImage }} {{ $featuredImage = $featuredImage.Resize "900x" }} <figure class="figure" style="max-width: 600px"> <img class="figure-img img-fluid" alt="" src="{{ $featuredImage.RelPermalink }}" /> {{ with .Params.featured_image.caption }} <figcaption class="figure-caption">{{ . }}</figcaption> {{ end }} </figure> {{ end }} {{ end }} {{ range .Params.tags }} <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> {{ end }} <div> {{ .Content }} </div> </article> </main> {{ end }}