2022-08-09 11:59:43 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ $paginator := .Paginate .Data.Pages }}
|
|
|
|
|
|
|
|
|
|
|
|
<main class="posts">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
|
|
|
|
{{ if .Content }}
|
|
|
|
<div class="content">{{ .Content }}</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<section class="timeline">
|
|
|
|
<div class="container" style="text-align: left!important">
|
|
|
|
{{ range .Pages.ByDate }}
|
|
|
|
|
|
|
|
<div class="timeline-item">
|
|
|
|
<div class="timeline-img"></div>
|
|
|
|
|
|
|
|
<div class="timeline-content js--fadeInLeft">
|
|
|
|
<h2><a href="{{.Permalink}}"><span class="post-title">{{.Title}}</span></a></h2>
|
|
|
|
<div class="date">{{ .Date.Format "Jan 2, 2006"}}</div>
|
2022-08-09 21:51:01 +02:00
|
|
|
<b> {{ .Params.Summary }} </b>
|
2022-08-09 11:59:43 +02:00
|
|
|
<p>
|
2022-08-09 21:51:01 +02:00
|
|
|
{{.Content}}
|
2022-08-09 11:59:43 +02:00
|
|
|
<!-- {{.Params.Eventname}}<br>
|
|
|
|
{{.Params.Eventlocation}} -->
|
|
|
|
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</main>
|
|
|
|
{{ end }}
|