summary refs log tree commit diff
path: root/templates/post.html
diff options
context:
space:
mode:
authorMatt Arnold2025-04-15 09:58:58 -0400
committerMatt Arnold2025-04-15 09:58:58 -0400
commite8880e73a23571acf47845b1e38292239c5d71b2 (patch)
tree0f12139f68f7dd99646d257bc3519744ba5b2f2e /templates/post.html
parentdc557895b1bd517bbdc2821a79f2be12624010d6 (diff)
finally got different profiles/faccets to work.
Unsure if it was just the typo in the template or
we really needed backend changes but belt and suspenders logic applies
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html11
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/post.html b/templates/post.html
index eef4c93..4d37ed9 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -24,11 +24,14 @@
 <a href="{{url_for('post', post_id=post.parent)}}"> Previous</a>
 <hr>
 {% endif %}
+<h2>{{ post.title }}</h2>
+<p>{{ post.created_at.strftime('%Y-%m-%d %H:%M') }}</p>
+
 <div class="container">
-    <h2>{{ post.title }}</h2>
-    <p>{{ post.created_at.strftime('%Y-%m-%d %H:%M') }}</p>
-    <p> Authour: <a href="{{url_for('details', light=post.authour.name)}}"> {{post.authour.name}} </a></p>
-    <div>{{ post.content|markdown|safe }}</div>
+    <div class="userbox">
+        <p> Authour: <a href="{{url_for('details', light=post.authour.name)}}"> {{post.authour.name}} </a></p>
+    </div>
+    <div class="post-content">{{ post.content|markdown|safe }}</div>
 </div>
 <div class="post-actions">
     <a href="{{ url_for('create', reply=post.id)}}"> Reply</a> ~