From c5a67bb508445a803289cb4902164f378236284e Mon Sep 17 00:00:00 2001
From: Alexander Neonxp Kiryukhin <i@neonxp.ru>
Date: Sun, 15 Dec 2024 13:14:03 +0300
Subject: Auto-commit 2024-12-15

---
 layouts/partials/list.html          | 14 +++++++++++---
 layouts/partials/single/footer.html |  8 ++++----
 2 files changed, 15 insertions(+), 7 deletions(-)

(limited to 'layouts')

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>
-- 
cgit v1.2.3