loviuz-website/layouts/partials/page.html

31 lines
745 B
HTML
Raw Normal View History

2022-06-05 12:10:31 +02:00
<section class="container page">
2022-06-05 15:32:24 +02:00
{{ if .Section }}
2022-06-05 16:45:20 +02:00
<a href="{{.Site.BaseURL}}/{{.Section}}"><i class="fa fa-chevron-left fa-fw"></i> Torna a {{.Section}}</a>
2022-06-05 15:32:24 +02:00
{{ end }}
2022-06-05 12:10:31 +02:00
<article>
<header>
<h1 class="title">
<a class="title-link" href="{{ .Permalink | safeURL }}">
{{ .Title }}
</a>
</h1>
{{ if .Params.tags }}
<ul class="tags">
{{ range .Params.tags }}
<li>#{{ . }}</li>
{{ end }}
</ul>
{{ end }}
</header>
{{ $image := .Resources.GetMatch .Params.image }}
{{ if $image }}
{{ $image := $image.Crop "1280x250" }}
<img src="{{ $image.RelPermalink }}">
{{ end }}
{{ .Content }}
</article>
</section>