blog/themes/quadrant/layouts/_default/home.html

13 lines
449 B
HTML
Raw Permalink Normal View History

2025-04-18 18:11:05 +00:00
{{ define "main" }}
{{ .Content }}
{{ range site.RegularPages }}
2025-04-30 18:52:39 +00:00
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
<h2 class="post-title">
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a><br />
<time class="post-time" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
</h2>
2025-04-30 20:29:41 +00:00
{{ .Summary | strings.Truncate 200 }}
2025-04-18 18:11:05 +00:00
{{ end }}
{{ end }}