aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/list.html14
-rw-r--r--layouts/partials/single/footer.html8
2 files changed, 15 insertions, 7 deletions
diff --git a/layouts/partials/list.html b/layouts/partials/list.html
index 920f9c5..7d14c4d 100644
--- a/layouts/partials/list.html
+++ b/layouts/partials/list.html
@@ -19,9 +19,17 @@
{{ else }}
{{ .Summary }}
{{ if .Truncated }}
- <div><a href="{{ .RelPermalink }}">Далее...</a></div>
+ <div><a class="btn btn-primary" href="{{ .RelPermalink }}">Далее...</a></div>
{{ end }}
{{ end }}
-
- {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+ <div class="p-tags">
+ {{ partial "icon.html" "tag" }}
+ {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
+ </div>
+ {{ if .Params.Location }}
+ <div class="p-location">
+ {{ partial "icon.html" "location" }}
+ {{.Params.Location}}
+ </div>
+ {{ end }}
</div> \ No newline at end of file
diff --git a/layouts/partials/single/footer.html b/layouts/partials/single/footer.html
index 66e4dc5..c0f397a 100644
--- a/layouts/partials/single/footer.html
+++ b/layouts/partials/single/footer.html
@@ -1,15 +1,15 @@
<footer class="post-footer">
<div class="row between-xs">
- <span>
+ <div class="p-tags">
{{ partial "icon.html" "tag" }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
- </span>
+ </div>
{{ if .Params.Location }}
- <span class="p-location">
+ <div class="p-location">
{{ partial "icon.html" "location" }}
{{.Params.Location}}
- </span>
+ </div>
{{ end }}
</div>
</footer>