blob: 0f37911b79958ab5a8058a23d8f133fccac537a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<footer class="post-footer">
<div class="row between-xs">
{{ if .Params.Tags }}
<div class="p-tags">
{{ partial "icon.html" "tag" }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
</div>
{{ end }}
{{ if .Params.Location }}
<div class="p-location">
{{ partial "icon.html" "location" }}
<a href="https://www.openstreetmap.org/search?query={{.Params.Location}}">{{.Params.Location}}</a>
</div>
{{ end }}
</div>
</footer>
{{ if .Params.comments }} {{ partial "comments.html" . }} {{ end }}
|