summary refs log tree commit diff
path: root/templates/view_thread.html
diff options
context:
space:
mode:
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>