27 lines
663 B
HTML
27 lines
663 B
HTML
{{ define "main" }}
|
|
<h2>{{ i18n "latest-posts" }}</h2>
|
|
{{ $pages := first .Site.Params.latestPostsCount (where .Site.RegularPages "Section" "blog") }}
|
|
<ul class="blog-posts">
|
|
{{ range $pages }}
|
|
<li>
|
|
<span>
|
|
<i>
|
|
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
|
|
{{ .Date.Format (default "2006-01-02" .Site.Params.dateFormat) }}
|
|
</time>
|
|
</i>
|
|
</span>
|
|
{{ if .Params.link }}
|
|
<a href="{{ .Params.link }}" target="_blank">{{ .Title }} ↪</a>
|
|
{{ else }}
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
{{ end }}
|
|
</li>
|
|
{{ else }}
|
|
<li>
|
|
{{ i18n "no-posts" }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ .Content }}
|
|
{{ end }}
|