vitrine/layouts/_default/single.html

16 lines
361 B
HTML
Raw Permalink Normal View History

2024-05-24 20:01:53 +00:00
{{ define "main" }}
2024-06-19 18:45:01 +00:00
<article class="content">
<div class="title">
<h1>{{ .Title }}</h1>
</div>
2024-05-24 20:01:53 +00:00
2024-06-19 18:45:01 +00:00
{{ if .Date }}
2024-05-24 20:01:53 +00:00
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
2024-06-19 18:45:01 +00:00
{{ end }}
2024-05-24 20:01:53 +00:00
{{ .Content }}
2024-06-19 18:45:01 +00:00
</article>
2024-05-24 20:01:53 +00:00
{{ end }}