aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/single/footer.html
blob: 61826cd9f3cd2b96067eda8780f183e8ca95e48d (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" }}
            {{.Params.Location}}
        </div>
        {{ end }}
    </div>
</footer>
{{ if .Params.comments }} {{ partial "comments.html" . }} {{ end }}