From 771d74864e09139b6012fcefa94aeb602514128b Mon Sep 17 00:00:00 2001
From: m
Date: Sun, 15 Mar 2026 04:30:45 +0100
Subject: [PATCH] btn
---
static/css/simple-blog-template.css | 9 ++++++++-
templates/post_detail.html | 9 +++++----
2 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/static/css/simple-blog-template.css b/static/css/simple-blog-template.css
index ee0a7c9..d3933a8 100644
--- a/static/css/simple-blog-template.css
+++ b/static/css/simple-blog-template.css
@@ -103,7 +103,7 @@ nav {
border: 1px solid #d1d5db;
color: #374151;
- border-radius: 0px;
+ border-radius: 5px;
padding: 10px 22px;
font-size: 0.8rem;
@@ -301,3 +301,10 @@ nav {
position: relative;
z-index: 1; /* Ensures text stays on top */
}
+
+/*try to wrap back post*/
+.post-actions::after {
+ content: "";
+ display: block;
+ clear: both;
+}
diff --git a/templates/post_detail.html b/templates/post_detail.html
index 6179828..2672b88 100644
--- a/templates/post_detail.html
+++ b/templates/post_detail.html
@@ -10,10 +10,11 @@ Template{% endblock %} {% block content %} {% from
Posted on {{ post.date }}
{{ render_post(post) }}
-
- ← Back to Posts
+
{% include 'leave_comment.html' %}