Files
davideisinger.com/themes/v2/layouts/elsewhere/list.html
2023-10-24 20:51:31 -04:00

24 lines
554 B
HTML

{{ define "main" }}
<section>
<hr>
<h2>Elsewhere</h2>
{{ .Content }}
<ul>
{{ range (where .Site.RegularPages "Type" "in" "elsewhere") }}
{{ $url := urls.Parse .Params.canonical_url }}
{{ $host := strings.Replace $url.Hostname "www." "" }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
<span class="nowrap">
(<a href="{{ $url }}">{{ $host }}</a>, {{ .Date | time.Format "2006-01-02" }})
</span>
</li>
{{ end }}
</ul>
</section>
{{ end }}