summary refs log tree commit diff
path: root/templates/view_thread.html
diff options
context:
space:
mode:
authorMatt Arnold2025-04-15 22:38:45 -0400
committerMatt Arnold2025-04-15 22:38:45 -0400
commit6e1f614f0cf67d997c0a1b7e4e3866294c05f1e0 (patch)
tree0f4cd6962d24773e9c487cac3fdbf1a2e3e36b16 /templates/view_thread.html
parent1f6e041e49754ae41db005f98df2685031ccaff0 (diff)
We're at Minimum viable product now
Diffstat (limited to 'templates/view_thread.html')
-rw-r--r--templates/view_thread.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/view_thread.html b/templates/view_thread.html
index 877feb8..6696462 100644
--- a/templates/view_thread.html
+++ b/templates/view_thread.html
@@ -13,7 +13,9 @@
     </div>
     <div class="post-content">
         <p>
-        <h4> {{post.title}} </h4>
+            <a href="{{url_for('post', post_id=post.id)}}">
+                <h4> {{post.title}} </h4>
+            </a>
         </p>
         {{ post.content|markdown|safe }}
     </div>