Matthieu Bessat
f9e49913bf
All checks were successful
Deploy workflow / deploy (push) Successful in 13s
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
{{ 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 "600x" }}
|
|
<figure class="figure">
|
|
<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 }}
|