You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suchwow/suchwow/templates/post/read.html

32 lines
970 B

{% extends 'base.html' %}
{% block content %}
<div class="container">
<div class="post" style="text-align:center;">
<a href="/">< Go Back</a>
{% if post.hidden %}
<h2>You cannot see this post</h2>
{% else %}
<h1>{{ post.title }}</h1>
<p class="subtitle">{{ post.text }}</p>
<p class="subtext">Submitted by <i><u>{{ post.submitter }}</u></i> at <i>{{ post.timestamp }}</i></p>
<br>
<img src="{{ url_for('post.uploaded_file', filename=post.image_name) }}" width=500/ style="margin-bottom:1em;border-radius:4px;">
<hr>
<p style="word-break:break-all;">Vote for this post by sending WOW to the following address:<br><b><i>{{ address }}</i></b></p>
<hr>
<h4>Comments</h4>
{% if comments %}
{% for comment in comments %}
{{ comment.text }}
{% endfor %}
{% else %}
<p>No comments yet.</p>
{% endif %}
{% endif %}
</div>
</div>
{% endblock %}