Former-commit-id: dbb7c2b62f4e6821b41bd8298bee6dc63dcbf794 [formerly 88fc431466]
Former-commit-id: 14a13c88caf5ef791924271f8d9d17c72dba4ce8
63 lines
No EOL
1.8 KiB
HTML
63 lines
No EOL
1.8 KiB
HTML
{{ define "main" }}
|
|
{{ if .Content }}
|
|
<div class="index-content titolo-wiki {{ if .Params.framed -}}framed{{- end -}}">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ end }}
|
|
<div class="posts">
|
|
{{ range .Pages.ByTitle }}
|
|
<article class="post on-list">
|
|
<h1 class="post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
|
|
<div class="post-meta">
|
|
{{ if .Date }}
|
|
<time class="post-date">
|
|
{{ .Date.Format ($.Site.Params.DateFormatList | default "2006-01-02") }}
|
|
</time>
|
|
|
|
{{ if $.Site.Params.LastModDisplay }}
|
|
{{ partial "lastmod.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ with .Params.Author }}
|
|
<span class="post-author">— {{ $.Site.Params.WrittenBy | default "Written by" }} {{ . }}</span>{{ end }}
|
|
|
|
|
|
{{ if $.Site.Params.ShowReadingTime }}
|
|
<span class="post-read-time">— {{ .ReadingTime }} {{ $.Site.Params.MinuteReadingTime | default "min read"
|
|
}}</span>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ if .Params.tags }}
|
|
<span class="post-tags">
|
|
{{ range .Params.tags }}
|
|
<a href="{{ (urlize (printf " tags/%s" . )) | absLangURL }}/">#{{ . }}</a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
|
|
{{ if .Params.Cover }}
|
|
{{ partial "postcover.html" . }}
|
|
{{ end }}
|
|
|
|
<div class="post-content">
|
|
{{ with .Description }}
|
|
{{ . | markdownify }}
|
|
{{ else }}
|
|
{{ if .Truncated }}
|
|
{{ .Summary | truncate 100 }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<!-- {{ if not .Params.hideReadMore }}
|
|
<div>
|
|
<a class="read-more button" href="{{ .RelPermalink }}"
|
|
>{{ $.Site.Params.ReadMore | default "Read more" }} →</a
|
|
>
|
|
</div>
|
|
{{ end }} -->
|
|
</article>
|
|
{{ end }}
|
|
{{ partial "pagination.html" . }}
|
|
</div>
|
|
{{ end }} |