- {% for post in posts %}
-
- {% endfor %}
-
-
+
+
+
+
+ {% for post in posts %}
+
+ {% endfor %}
+
+
+ {{ render_pagination('post.posts') }}
+
+
{% endblock content %}
\ No newline at end of file
diff --git a/yadc/templates/login.html b/yadc/templates/login.html
index 315930c..7d461da 100644
--- a/yadc/templates/login.html
+++ b/yadc/templates/login.html
@@ -2,22 +2,25 @@
{% from "_formhelpers.html" import errors %}
{% block content %}
-
Log In
-
-
Forgoten password?
+
{% endblock content %}
\ No newline at end of file
diff --git a/yadc/templates/post.html b/yadc/templates/post.html
index 295db7b..ed9831f 100644
--- a/yadc/templates/post.html
+++ b/yadc/templates/post.html
@@ -3,59 +3,59 @@
{% from "_formhelpers.html" import errors %}
{% block content %}
-
-
-
-
-
- Id: {{ post.id }}
- Author: {{ post.author.username }}
- {% if post.is_approved %}
- Approved by: {{ post.approver.username }}
- {% endif %}
- {% if not post.is_approved %}
- Status: {{ post.status.name.capitalize() }}
- {% endif %}
- Posted: 10 hours ago
-
- File size: {{ post.filesize_human }}
- Image res: {{ post.image_resolution }}
-
- {% if post.filetype.name == 'png' %}
-
- {% endif %}
+
+
+
+
+
+ Id: {{ post.id }}
+ Author: {{ post.author.username }}
+ {% if post.is_approved %}
+ Approved by: {{ post.approver.username }}
+ {% endif %}
+ {% if not post.is_approved %}
+ Status: {{ post.status.name.capitalize() }}
+ {% endif %}
+ Posted: 10 hours ago
+
+ File size: {{ post.filesize_human }}
+ Image res: {{ post.image_resolution }}
+
+ {% if post.filetype.name == 'png' %}
+
+ {% endif %}
-
- {{ render_tags() }}
- {% if post.can_edit %}
- {{ render_post_edit() }}
- {% endif %}
-
-
-
-
-
-
+
+ {{ render_tags() }}
+ {% if post.can_edit %}
+ {{ render_post_edit() }}
+ {% endif %}
+
+
+
+
-
+
+
Comments
- {{ render_comments() }} +