This repository has been archived on 2021-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
theme-geeklab/layouts/_default/list.html

51 lines
1.9 KiB
HTML

{{ define "main" }}
{{ $paginator := .Paginate (where .Pages "Type" "post") }}
{{ range $paginator.Pages }}
<article class="post">
<header class="post-header">
<h1 class="post-header__title"><a class="post-header__link" href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
</header>
<section class="post-content">
{{ .Summary }}
{{ if .Truncated }}
<div>
<br><a class="post-content__link is-readmore" title="Lese den kompletten Artikel" href="{{ .RelPermalink }}">Weiterlesen</a>
</div>
{{ end }}
</section>
<footer>
<span class="post-meta__button">
<i class="far fa-calendar-alt post-meta__icon"></i>
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">
{{ .Date.Day }}. {{ index $.Site.Data.de_month (printf "%d" .Date.Month) }} {{ .Date.Year }}
</time>
</span>
{{ with .Params.Author }}
{{ $author := index $.Site.Data.authors . }}
{{ with $.Site.GetPage (printf "/author/%s" $author.name | urlize) }}
<span class="post-meta__button">
<i class="fas fa-user post-meta__icon"></i>
<a class="post-meta__link" href="{{ .RelPermalink }}" title="Alle Artikel des Autors">{{ $author.name }}</a>
</span>
{{ end }}
{{ end }}
{{ range .Param "categories" }}
{{ $name := . }}
<span class="post-meta__button">
{{ with $.Site.GetPage (printf "/categories/%s" $name | urlize) }}
<i class="fas fa-tags post-meta__icon"></i>
<a class="post-meta__link" href="{{ .RelPermalink }}" title="Alle Artikel in '{{ $name }}'">{{ $name }}</a>
{{ end }}
</span>
{{ end }}
</footer>
</article>
{{ end }}
{{ partial "pagination.html" . }}
{{ end }}