64 lines
2 KiB
HTML
64 lines
2 KiB
HTML
{{ define "main" }}
|
|
<main class="container" aria-role="main">
|
|
<div class="homepage-content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{- $events := where (.Site.GetPage "blog").Pages ".Params.categories" "event" }}
|
|
{{- $upcoming := where $events ".Params.date" "ge" now }}
|
|
{{ if $upcoming }}
|
|
<div class="announcements">
|
|
<h2>Neuigkeiten</h2>
|
|
{{- range $upcoming.ByDate }}
|
|
<div class="announcement">
|
|
{{- partial "blog-header.html" (dict "headingLink" true "level" 4 "reduced" true "page" . ) }}
|
|
|
|
{{- if in .RawContent "<!--more-->" }}
|
|
{{ .Summary | safeHTML }}
|
|
{{- else }}
|
|
<p>{{ .Summary | safeHTML }}</p>
|
|
{{- end }}
|
|
</div>
|
|
{{- end }}
|
|
</div>
|
|
{{- end }}
|
|
|
|
{{- $home := .Site.GetPage "/home" }}
|
|
{{- $sections := where ($home.Resources.ByType "page") ".File.LogicalName" "index.md" }}
|
|
{{- range sort $sections "File.Path" "asc" }}
|
|
<div class="section">
|
|
<h2>{{ .Title }}</h2>
|
|
{{ .Content -}}
|
|
|
|
{{- $subsec_dir := strings.TrimLeft "home/" .File.Dir }}
|
|
{{- $subsec_glob := printf "%s*.md" (strings.TrimLeft "home/" .File.Dir) }}
|
|
{{- $subsecs := where ($home.Resources.Match $subsec_glob) ".File.LogicalName" "!=" "index.md" }}
|
|
{{- if $subsecs }}
|
|
<div class="flex-grid">
|
|
{{- range $subsecs }}
|
|
<div class="wide">
|
|
<h4>{{ .Title }}</h4>
|
|
{{- $img_path := printf "%s%s" $subsec_dir .Params.Image }}
|
|
{{- with $home.Resources.Get $img_path }}
|
|
<img class="groups-img" src="{{ .Permalink }}">
|
|
{{- end }}
|
|
{{ .Content }}
|
|
</div>
|
|
{{- end }}
|
|
</div>
|
|
{{- end }}
|
|
|
|
{{- with .Params.Resources }}
|
|
<div class="flex-grid">
|
|
{{- range . }}
|
|
{{- $img := $home.Resources.GetMatch (printf "*/%s" .src) }}
|
|
<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 }}
|