website/layouts/_default/single.html
2025-04-02 13:49:33 -03:00

30 lines
No EOL
710 B
HTML

{{ define "main" }}
{{/* {{ with $.Resources.GetMatch "*.css" }}
{{ $style := . | minify | fingerprint }}
<link type=text/css rel="stylesheet" href="{{ $style.Permalink }}">
{{ end }} */}}
<main>
<div>
<h1>
{{ .Title }}
</h1>
{{ $date := .Date.Format "02-01-2006" }}
{{ $lastmod := .Lastmod.Format "02-01-2006" }}
{{/* <span class="date-info italic">Published on
{{ $date }}</span> */}}
{{ if ne $lastmod $date }}
<span class="date-info">Edited on
{{ .Lastmod.Format "02-01-2006" }}</span>
{{ end }}
<div>
<article>
{{ .Content }}
</article>
</div>
{{/* </section>
<div>
{{ .Content }}
</div> */}}
</main>
{{ end }}