www.kontakt-bamberg.de/layouts/index.html

41 lines
1.2 KiB
HTML
Raw Normal View History

2023-03-11 11:41:19 +01:00
{{ define "main" }}
{{ .Content }}
2023-03-12 00:13:25 +01:00
<h1 id="aktuelles">Aktuelles</h1>
2023-03-11 11:41:19 +01:00
{{ $pagination := .Paginate .RegularPages }}
{{ range $pagination.Pages }}
<p class="date">{{ .Date | dateFormat "Mon, 02. January 2006" }}</p>
2023-03-11 16:04:10 +01:00
<article class="preview">
{{ with .Resources.GetMatch "image.jpg" }}
<img alt="{{ .Title }}" src="{{ .RelPermalink }}">
2023-03-11 16:04:10 +01:00
{{ end }}
<section class="text">
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ .Summary }}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">> Mehr &lt;</a>
{{ end }}
2023-03-11 16:04:10 +01:00
</section>
</article>
2023-03-11 11:41:19 +01:00
{{ end }}
{{ with $pagination }}
{{ if gt .TotalPages 1 }}
<nav class="pagination">
{{ if .HasPrev }}<a href="{{ .Prev.URL }}">&lt; Neuere Posts</a>{{ end }}
<span>{{ .PageNumber }}/{{ .TotalPages }}</span>
{{ if .HasNext }}<a href="{{ .Next.URL }}">Ältere Posts &gt;</a>{{ end }}
</nav>
{{ end }}
{{ end }}
2023-03-12 00:13:25 +01:00
<h1 id="galerie">Galerie</h1>
<section class="gallery">
{{ range first 4 (.Site.GetPage "/galerie").Pages }}
<a class="blur-on-hover" href="{{ .RelPermalink }}">
{{ with index (.Resources.ByType "image") 0 }}
<img alt="{{ .Title }}" src="{{ .RelPermalink }}">
2023-03-12 00:13:25 +01:00
{{ end }}
<p>{{ .Title }}</p>
</a>
{{ end }}
</section>
2023-03-11 11:41:19 +01:00
{{ end }}