65 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
	
		
			2.4 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 id="neuigkeiten" class="on-hover-trg">Neuigkeiten <a href="#neuigkeiten" class="on-hover"><i class="fa-solid fa-link small"></i></a></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">
 | |
|       {{- $hdg_id := .Title | lower | safeURL }}
 | |
|       <h2 id="{{ $hdg_id }}" class="on-hover-trg">{{ .Title }} <a href="#{{ $hdg_id }}" class="on-hover"><i class="fa-solid fa-link small"></i></a></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 }}
 | |
|       {{- $link := .Params.link }}
 | |
|         <div class="wide">
 | |
|           <h4><a href="{{ $link }}">{{ .Title }}</a></h4>
 | |
|           {{- $img_path := printf "%s%s" $subsec_dir .Params.Image }}
 | |
|           {{- with $home.Resources.Get $img_path }}
 | |
|           <a href="{{ $link }}"><img class="groups-img" src="{{ .RelPermalink }}"></a>
 | |
|           {{- 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.RelPermalink }}" class="box-image" alt=""></a></div>
 | |
|         {{- end }}
 | |
|       </div>
 | |
|       {{- end }}
 | |
|     </div>
 | |
|     {{ end }}
 | |
| 
 | |
|   </main>
 | |
| {{ end }}
 |