2023-10-02 12:08:18 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
<main class="container" aria-role="main">
|
|
|
|
<div class="homepage-content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
|
2023-10-05 23:02:20 +02:00
|
|
|
{{- $events := where (.Site.GetPage "blog").Pages ".Params.categories" "event" }}
|
2023-10-02 12:08:18 +02:00
|
|
|
{{- $upcoming := where $events ".Params.date" "ge" now }}
|
2023-10-08 17:38:54 +02:00
|
|
|
{{ if $upcoming }}
|
2023-10-02 12:08:18 +02:00
|
|
|
<div class="announcements">
|
2023-10-11 21:55:42 +02:00
|
|
|
<h2>Neuigkeiten</h2>
|
2023-10-02 12:08:18 +02:00
|
|
|
{{- range $upcoming.ByDate }}
|
|
|
|
<div class="announcement">
|
2023-10-08 17:38:54 +02:00
|
|
|
{{- partial "blog-header.html" (dict "headingLink" true "level" 4 "reduced" true "page" . ) }}
|
|
|
|
|
|
|
|
{{- if in .RawContent "<!--more-->" }}
|
|
|
|
{{ .Summary | safeHTML }}
|
|
|
|
{{- else }}
|
|
|
|
<p>{{ .Summary | safeHTML }}</p>
|
2023-10-02 12:08:18 +02:00
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
|
2023-10-17 22:07:39 +02:00
|
|
|
{{- $home := .Site.GetPage "/home" }}
|
|
|
|
{{- range sort ($home.Resources.ByType "page") "File.Path" "asc" }}
|
2023-10-02 12:08:18 +02:00
|
|
|
<div class="section">
|
2023-10-11 21:55:42 +02:00
|
|
|
<h2>{{ .Title }}</h2>
|
2023-10-02 12:08:18 +02:00
|
|
|
{{ .Content -}}
|
|
|
|
|
2023-10-17 22:07:39 +02:00
|
|
|
{{- $sec := .CurrentSection }}
|
2023-10-02 12:08:18 +02:00
|
|
|
{{- with .Params.Resources }}
|
|
|
|
<div class="flex-grid">
|
|
|
|
{{- range . }}
|
2023-10-17 22:07:39 +02:00
|
|
|
{{- $img := $sec.Resources.GetMatch (printf "*/%s" .src) }}
|
2023-10-02 12:08:18 +02:00
|
|
|
<div class="img-link"><a href="{{ .params.url }}"><img src="{{ $img.Permalink }}" class="box-image" alt=""></a></div>
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</main>
|
|
|
|
{{ end }}
|