The „About me“ page is now the landing page; Capitalized menus

This commit is contained in:
Vrifox 2021-05-15 10:10:56 +02:00
parent fa7687f21a
commit 9cbd118b16
Signed by: vrifox
GPG key ID: D40098E5B60B2197
3 changed files with 29 additions and 26 deletions

View file

@ -1,7 +1,26 @@
{{- define "main" }}
<main>
{{- range first 8 (where .Site.RegularPages "Type" "post") }}
<p> <a href="{{ .Permalink }}">{{ .Title }}</a> <span>{{ .Date.Format "2 January 2006" }}</span> </p>
{{- end }}
<h1 class="title">{{ .Title }}</h1>
{{- if eq .Params.type "post" }}
<p title="{{ .Date.Format "2. January 2006, 15:04 MST" }}">{{ .Date.Format "2. January 2006" }}</p>
{{- end }}
{{ .Content -}}
<aside>
{{- with .Params.topics }}
<ul class="topics">
{{- range . }}
<li>
<a href="{{ "topics" | relURL}}/{{ . | urlize }}">{{ . }}</a>
</li>
{{ end }}
</ul>
{{- end }}
{{- with .Params.tags }}
tags
{{- range . }}
<a href="{{ "tags" | relURL }}/{{ . | urlize }}">{{ . }}</a>
{{- end }}
{{- end }}
</aside>
</main>
{{- end }}