2021-07-21 20:23:55 +02:00
|
|
|
{{ define "main" }}
|
2023-04-17 19:01:23 +02:00
|
|
|
<article id="main">
|
2023-04-15 01:36:29 +02:00
|
|
|
{{ partial "brand.html" . }}
|
|
|
|
{{ with .Content }}
|
2023-04-17 19:01:23 +02:00
|
|
|
<section>
|
|
|
|
{{ . }}
|
|
|
|
</section>
|
2023-04-15 01:36:29 +02:00
|
|
|
{{ end }}
|
2023-04-17 19:01:23 +02:00
|
|
|
<section class="page-list">
|
|
|
|
{{ range .Site.RegularPages }}
|
|
|
|
{{/* range where .Site.RegularPages "Type" "posts" */}}
|
|
|
|
{{ if ne .Draft true}}
|
|
|
|
<h2 class="content-title">
|
|
|
|
{{ if .IsNode }}
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title}}</a>
|
|
|
|
{{ else }}
|
|
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}{{ if .Draft }} :: Draft {{end}}</a>
|
|
|
|
{{ end }}
|
|
|
|
</h1>
|
|
|
|
<p>{{ truncate 140 .Summary }}</p>
|
2023-04-15 01:36:29 +02:00
|
|
|
{{ end }}
|
2023-04-17 19:01:23 +02:00
|
|
|
{{ end }}
|
|
|
|
</section>
|
2023-04-15 01:36:29 +02:00
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|