2022-11-11 05:48:02 +00:00
|
|
|
<footer class="site-content__footer">
|
|
|
|
<h1>Meta</h1>
|
|
|
|
|
|
|
|
{{- if .GetTerms "categories" -}}
|
|
|
|
<section id="post-categories" class="article-footer__categories" aria-labelledby="post-categories-title">
|
|
|
|
<h2 id="post-categories-title">Categories</h2>
|
|
|
|
<ul>
|
|
|
|
{{- range (.GetTerms "categories") -}}
|
|
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle | safeHTML }}</a></li>
|
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- with .Params.internal_links -}}
|
|
|
|
<section class="article-footer__links">
|
|
|
|
<h2>Internal Links</h2>
|
|
|
|
<ul>
|
|
|
|
{{- range . -}}
|
|
|
|
{{ if eq ( printf "%T" . ) "map[string]interface {}" }}
|
|
|
|
<li><a href="{{ .link }}">{{ .title | safeHTML }}</a></li>
|
|
|
|
{{ else }}
|
|
|
|
<li><a href="{{ . }}">Link</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- with .Params.external_links -}}
|
|
|
|
<section class="article-footer__links">
|
|
|
|
<h2>External Links</h2>
|
|
|
|
<ul>
|
|
|
|
{{- range . -}}
|
|
|
|
{{ if eq ( printf "%T" . ) "map[string]interface {}" }}
|
|
|
|
<li><a href="{{ .link }}" rel="noopener noreferrer" target="_blank">{{ .title | safeHTML }}</a></li>
|
|
|
|
{{ else }}
|
|
|
|
<li><a href="{{ . }}" rel="noopener noreferrer" target="_blank">Link</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|
|
|
|
|
2023-01-29 18:50:16 +00:00
|
|
|
{{- if .GetTerms "areas" -}}
|
|
|
|
<section class="article-footer__links">
|
|
|
|
<h2 id="item-areas-title">Areas</h2>
|
|
|
|
<ul>
|
|
|
|
{{- range ( .GetTerms "areas" ).ByTitle -}}
|
|
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
|
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|
|
|
|
|
2022-11-11 05:48:02 +00:00
|
|
|
{{- if .GetTerms "organisations" -}}
|
|
|
|
<section id="post-organisations" class="article-footer__organisations" aria-labelledby="post-organisations-title">
|
|
|
|
<h2 id="post-organisations-title">Organisations</h2>
|
|
|
|
<ul>
|
|
|
|
{{ $all_organisations := partialCached "get_all_organisations.html" . }}
|
|
|
|
<!-- TODO: Replace with hierarchy partial -->
|
|
|
|
{{- range ( .GetTerms "organisations" ) -}}
|
|
|
|
{{ with ( where $all_organisations "Title" ( .Title | plainify ) ) }}
|
|
|
|
{{ range . }}
|
|
|
|
<li><a href="{{ .RelPermalink }}">{{ if ( .Params.markup_title ) }}{{ .Params.markup_title | safeHTML }}{{ else }}{{ .Title }}{{ end }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
{{ warnf "Could not find organisation %q (%q)" .Title $.File.Path }}
|
|
|
|
<li>{{ if ( .Params.markup_title ) }}{{ .Params.markup_title | safeHTML }}{{ else }}{{ .Title }}{{ end }}</li>
|
|
|
|
{{ end }}
|
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- if .GetTerms "locations" -}}
|
|
|
|
<section id="post-locations" class="article-footer__locations" aria-labelledby="post-locations-title">
|
|
|
|
<h2 id="post-locations-title">Locations</h2>
|
|
|
|
<div id="mapdiv" style="width: 100%; height: 500px; margin: 0; display: block;"></div>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- if .GetTerms "tags" -}}
|
|
|
|
<section id="post-tags" class="article-footer__tags" aria-labelledby="post-tags-title">
|
|
|
|
<h2 id="post-tags-title">Tags</h2>
|
|
|
|
<ul>
|
|
|
|
{{- range ( .GetTerms "tags" ).ByTitle -}}
|
|
|
|
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle | safeHTML }}</a></li>
|
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{{- end -}}
|
|
|
|
</footer>
|