yequari.com/layouts/links/single.html

17 lines
666 B
HTML
Raw Normal View History

2025-02-23 21:29:49 -07:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ if .Params.Subtitle }}<p class="subtitle">{{ .Params.Subtitle }}</p>{{ end }}
{{ if .Params.context }}
{{ $url := urls.Parse .Params.context.url }}
<p class="context"><a href="{{ $url.String }}" class="u-in-reply-to">{{ $url.Host }}</a></p>
{{ end }}
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
{{ $dateHuman := .Date | time.Format ":date_long" }}
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
{{ if .Params.toc }}<aside>{{ .TableOfContents }}</aside>{{ end }}
{{ .Content }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
{{ end }}