msfjarvis.dev/themes/hyde/layouts/index.html
Harsh Shandilya 1cff1c9afa themes/hyde: Exclude pages without date from main loop
This allows having standalone pages at the top level without them showing up in the blog post list

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
2019-11-29 19:57:00 +05:30

21 lines
514 B
HTML

{{ define "main" -}}
<div class="posts">
{{ range .Site.RegularPages -}}
{{ if .Date }}
<article class="post">
<h1 class="post-title">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</h1>
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}" class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
{{ .Summary }}
{{ if .Truncated }}
<div class="read-more-link">
<a href="{{ .RelPermalink }}">Read More…</a>
</div>
{{ end }}
</article>
{{- end }}
</div>
{{- end }}
{{- end }}