Removing a block of templating code, that seemingly did nothing, other than injecting a nice little [services] block on the frontpage ¯\_(ツ)_/¯

This commit is contained in:
Halfdan 2022-11-18 16:22:39 +01:00
parent 893e5e1486
commit 09cabf1b0b
1 changed files with 2 additions and 19 deletions

View File

@ -1,25 +1,8 @@
{{ define "main" }}
<h1>{{.Title}}</h1>
<h1>{{.Title}}</h1>
{{.Content}}
{{ .Site.Params.mainSections }}
{{ $pages := where site.RegularPages "Type" "in" ("") }}
{{ range $pages.ByPublishDate.Reverse }}
<p>
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
{{ $customDateFormat := "January 2, 2006" }}
{{ with .Site.Params.customDateFormat }}{{ $customDateFormat = . }}{{ end }}
<br>
<small class="text-secondary">{{ .PublishDate.Format $customDateFormat }}</small>
{{ partial "tags" . }}
{{ if eq .Site.Params.showPostSummary true }}
<br>
{{ .Summary }}
{{ end }}
</p>
{{ end }}
{{.Content}}
{{ end }}