From f3908a51aa9654f7049a5a5f74f89439d076924e Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Thu, 12 Mar 2020 18:27:25 +0300 Subject: added fonts, fixed jinja indenting --- templates/weblog.html | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'templates/weblog.html') diff --git a/templates/weblog.html b/templates/weblog.html index 11c0d2a..a20f356 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -2,26 +2,26 @@ {% block content %}
{% for post in paginator.pages %} -
-

{{ post.title }}

- {% if post.summary %} - {{ post.summary | safe }} - {% endif %} -
+
+

{{ post.title }}

+ {% if post.summary %} + {{ post.summary | safe }} + {% endif %} +
{% endfor %}
{% if paginator %} -{% if paginator.number_pagers > 1 %} -
- {% if paginator.previous %} - First - Previous page: {{ paginator.current_index - 1 }} - {% endif %} - {% if paginator.next %} - Next page: {{ paginator.current_index + 1 }} - Last + {% if paginator.number_pagers > 1 %} +
+ {% if paginator.previous %} + First + Previous page: {{ paginator.current_index - 1 }} + {% endif %} + {% if paginator.next %} + Next page: {{ paginator.current_index + 1 }} + Last + {% endif %} +
{% endif %} -
-{% endif %} {% endif %} {% endblock %} -- cgit v1.2.3