mirror of
https://github.com/loviuz/loviuz-website.git
synced 2025-02-03 18:37:35 +01:00
29 lines
710 B
HTML
Executable File
29 lines
710 B
HTML
Executable File
<section class="container page">
|
|
<a href="{{.Site.BaseURL}}{{.Section}}"><i class="fa fa-chevron-left fa-fw"></i> Torna a {{.Section}}</a>
|
|
<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>
|