32 lines
973 B
HTML
32 lines
973 B
HTML
{{ define "main" }}
|
|
<main class="page-container">
|
|
<article class="article">
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ with .Date }}
|
|
<div>Publié le <b><time>{{ . | time.Format ":date_full" }}</time></b></div>
|
|
{{ end }}
|
|
|
|
|
|
{{ if .Params.featured_image }}
|
|
{{ $featuredImage := .Resources.GetMatch (.Params.featured_image.src | safeURL) }}
|
|
{{ if $featuredImage }}
|
|
{{ $featuredImage = $featuredImage.Resize "600x" }}
|
|
<figure>
|
|
<img alt="" src="{{ $featuredImage.RelPermalink }}" />
|
|
{{ with .Params.featured_image.caption }}
|
|
<figcaption>{{ . }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ range .Params.tags }}
|
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
<div>
|
|
{{ .Content }}
|
|
</div>
|
|
</article>
|
|
</main>
|
|
{{ end }}
|