Adding basic structure for press articles pages

This commit is contained in:
Christian Wolf 2024-01-13 14:29:30 +01:00
parent a2cfe3459e
commit 48cd33338e
2 changed files with 27 additions and 1 deletions

View File

@ -1,7 +1,8 @@
---
title: "Pressestimmen"
date: 2023-01-20T16:27:40+01:00
draft: true
# draft: false
layout: press
# type: home
menu:
main:
@ -9,3 +10,4 @@ menu:
parent: aktuell
---

View File

@ -0,0 +1,24 @@
{{ define "main" }}
<a name="top">
<h1>{{ .Title }}</h1>
</a>
{{ .Content }}
{{ range .Pages.ByPublishDate.Reverse }}
<div class="press-article">
<div class="title">{{ .Title }}</div>
<div class="metadata">
<span class="date">{{ .Date.Format "02.01.2006" }}</span>
{{ with .Param "source" }}<span class="source">{{ . }}</span>{{ end }}
</div>
<div class="content">{{ .Content }}</div>
</div>
<!--<p>
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
<a class="summary" href="{{ .RelPermalink }}">
<p>{{ .Content }}</p>
</a>
</p>-->
{{ end }}
{{ partial "totop" }}
{{ end }}