summary refs log tree commit diff
path: root/templates/post.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/post.html
parent1f6e041e49754ae41db005f98df2685031ccaff0 (diff)
We're at Minimum viable product now
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html8
1 files changed, 2 insertions, 6 deletions
diff --git a/templates/post.html b/templates/post.html
index 4d37ed9..5e14c52 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -26,13 +26,9 @@
 {% endif %}
 <h2>{{ post.title }}</h2>
 <p>{{ post.created_at.strftime('%Y-%m-%d %H:%M') }}</p>
+<p> Authour: {{post.authour.name}}</p>
+<div>{{ post.content|markdown|safe }}</div>
 
-<div class="container">
-    <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> ~
     <a href="{{ url_for('index') }}">Back to posts</a>