summaryrefslogtreecommitdiff
path: root/design/templates/comments/posted.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-10-25 14:42:17 +0000
committerluxagraf <sng@luxagraf.net>2018-10-25 14:42:17 +0000
commitc007cb69dac6268e1dd4a772ea56623b0a01367c (patch)
tree35ea9b7fdccf3c507d3f12232b48307104e89550 /design/templates/comments/posted.html
parent55b73c69e7faf079642d323985dd48b577615dc6 (diff)
pulled stats from base template, fix layout bug in comments templates
Diffstat (limited to 'design/templates/comments/posted.html')
-rw-r--r--design/templates/comments/posted.html16
1 files changed, 10 insertions, 6 deletions
diff --git a/design/templates/comments/posted.html b/design/templates/comments/posted.html
index f4aee46..9a478cf 100644
--- a/design/templates/comments/posted.html
+++ b/design/templates/comments/posted.html
@@ -1,5 +1,6 @@
{% extends "base.html" %}
{% load i18n %}
+{%block htmlclass%}class="detail"{%endblock%}
{% block js %}
<script type="text/javascript">
@@ -22,10 +23,13 @@
</script>
{% endblock %}
{% block primary %}
-<main role="main">
- <h1>Thank you for your comment</h1>
- <p>Unless you've previously been approved a few times, your comment will be moderated. If we're on the road this can sometimes take a few days, so please be patient.</p>
- <p><a href="{{comment.content_object.get_absolute_url}}">Return to the page you came from</a> Redirecting in <span id="countdown">5</span></p>
-
- </main>
+<main>
+ <article>
+ <header class="post-header">
+ <h1 class="post-title">Thank you for your comment</h1>
+ </header>
+ <p>Unless you've previously been approved a few times, your comment will be moderated. If we're on the road this can sometimes take a few days, so please be patient.</p>
+ <p><a href="{{comment.content_object.get_absolute_url}}">Return to the page you came from</a> Redirecting in <span id="countdown">5</span></p>
+ </article>
+</main>
{% endblock %}