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/base.html | 16 ++++++++-------- templates/index.html | 4 ++-- templates/weblog.html | 34 +++++++++++++++++----------------- 3 files changed, 27 insertions(+), 27 deletions(-) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index f03965f..f689bf3 100644 --- a/templates/base.html +++ b/templates/base.html @@ -16,14 +16,14 @@

Yaroslav de la Peña Smirnov

{% block page %} -
- {% block content %} - {% endblock %} -
- +
+ {% block content %} + {% endblock %} +
+ {% endblock %} diff --git a/templates/index.html b/templates/index.html index 0d9fb7c..4e009e3 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,5 +1,5 @@ {% extends "base.html" %} {% block page %} -

Welcome to my site!

-Go to weblog +

Welcome to my site!

+ Go to weblog {% endblock %} 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