msfjarvis.dev/themes/hyde/layouts/index.html
Harsh Shandilya e9df2e450c Move template modifications out of themes/hyde and rollback misc changes
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
2020-02-04 02:15:50 +05:30

19 lines
488 B
HTML

{{ define "main" -}}
<div class="posts">
{{ range .Site.RegularPages -}}
<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 }}