implements location, closing #2

This commit is contained in:
Drew 2025-04-07 15:13:49 -06:00
parent ee5ca17e67
commit 75114cdbbe
2 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,9 @@
<p><strong>Narrator:</strong> <a href="{{ "/narrator/" | relLangURL }}{{ .Params.narrator | urlize }}">{{ .Params.narrator }}</a></p>
<p><strong>Facilitator:</strong> <a href="{{ "/facilitator/" | relLangURL }}{{ .Params.facilitator | urlize }}">{{ .Params.facilitator }}</a></p>
<p><strong>Subject:</strong> {{ .Params.subject }}</p>
{{ if .Params.location }}
<p><strong>Location:</strong> {{ .Params.location }}</p>
{{ end }}
<p><strong>Topics:</strong> {{ partial "tags.html" . }}</p>
{{ if .Params.links }}
<div class="mt-4">

View File

@ -13,6 +13,9 @@
</time>
<div class="w-3/5 flex-shrink-0">
<a class="text-2xl font-bold hover:text-green-900 underline" href="{{ $page.RelPermalink }}">{{ partial "article-title" $page }}</a>
{{ if $page.Params.location }}
<p class="text-gray-800 italic">{{ $page.Params.location }}</p>
{{ end }}
<p class="max-w-prose">{{ $page.Params.summary }}</p>
{{ partial "tags.html" $page }}
</div>