2022-07-03 15:58:57 +02:00
|
|
|
{{ define "title" }}
|
|
|
|
{{ .Title }} · {{ .Site.Title }}
|
|
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
|
|
<section class="container post">
|
2022-07-03 17:24:33 +02:00
|
|
|
{{ if .Section }}
|
|
|
|
<a href="{{.Site.BaseURL}}/{{.Section}}"><i class="fa fa-chevron-left fa-fw"></i> Torna alle {{.Section}}</a>
|
|
|
|
{{ end }}
|
2022-07-03 15:58:57 +02:00
|
|
|
<article>
|
|
|
|
<header>
|
|
|
|
<div class="post-title">
|
|
|
|
<h1 class="title">
|
|
|
|
<a class="title-link" href="{{ .Permalink | safeURL }}">
|
|
|
|
{{ .Title }}
|
|
|
|
</a>
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<div class="post-meta">
|
|
|
|
<div class="date">
|
|
|
|
<span class="posted-on">
|
|
|
|
<i class="fa fa-calendar" aria-hidden="true"></i>
|
|
|
|
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
|
|
|
|
{{ .Date | time.Format (.Site.Params.dateFormat | default "2 January 2006" ) }}
|
|
|
|
</time>
|
|
|
|
</span>
|
|
|
|
<span class="reading-time">
|
|
|
|
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
|
|
|
{{ i18n "reading_time" .ReadingTime }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{ with .Page.Params.Authors }}{{ partial "taxonomy/authors.html" . }}{{ end }}
|
|
|
|
{{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
|
|
|
|
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div>
|
2022-07-03 17:24:33 +02:00
|
|
|
{{ with .Resources.GetMatch (index (.Params.images) 0) }}
|
|
|
|
{{ $image := . }}
|
|
|
|
{{ $image := $image.Crop "1280x250" }}
|
|
|
|
<img src="{{ $image.RelPermalink }}">
|
2022-07-03 15:58:57 +02:00
|
|
|
{{ end }}
|
2022-07-03 17:24:33 +02:00
|
|
|
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
{{ .Content | safeHTML }}
|
2022-07-03 15:58:57 +02:00
|
|
|
</div>
|
|
|
|
|
2022-07-17 14:59:37 +02:00
|
|
|
{{ partial "donations.html" . }}
|
2022-07-03 15:58:57 +02:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
{{ partial "posts/series.html" . }}
|
|
|
|
{{ partial "posts/disqus.html" . }}
|
|
|
|
{{ partial "posts/commento.html" . }}
|
|
|
|
{{ partial "posts/utterances.html" . }}
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{{ partial "posts/math.html" . }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|