From 3caa2027c4c0d77c2706aac5356ce4aa666379a1 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Fri, 13 Mar 2020 18:28:40 +0300 Subject: style/layout changes; gitignore --- templates/archive.html | 7 ++++--- templates/base.html | 20 ++++++++++++++++++-- templates/index.html | 6 ++++-- templates/page.html | 5 ++--- templates/weblog.html | 7 +++++-- 5 files changed, 33 insertions(+), 12 deletions(-) (limited to 'templates') diff --git a/templates/archive.html b/templates/archive.html index 68daf65..c3eb817 100644 --- a/templates/archive.html +++ b/templates/archive.html @@ -1,12 +1,13 @@ {% extends "base.html" %} {% block content %} {% set section = get_section(path="weblog/_index.md") %} -
+
+

Archive

{% for year, posts in section.pages | group_by(attribute="year") %} -

{{ year }}

+

{{ year }}

{% endfor %} diff --git a/templates/base.html b/templates/base.html index f689bf3..43b0b77 100644 --- a/templates/base.html +++ b/templates/base.html @@ -14,6 +14,7 @@
{% block page %}
@@ -21,8 +22,23 @@ {% endblock %}
{% endblock %}
diff --git a/templates/index.html b/templates/index.html index 4e009e3..64bea0c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,5 +1,7 @@ {% extends "base.html" %} {% block page %} -

Welcome to my site!

- Go to weblog +
+

Welcome to my site!

+ Go to weblog +
{% endblock %} diff --git a/templates/page.html b/templates/page.html index 66faa93..4a3c86c 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,10 +1,9 @@ {% extends "base.html" %} {% block content %} {% set post = page %} -
+

{{ post.title }}

-

{{ post.date }}

-
+

Published on: {{ post.date | date(format="%b %d, %Y %H:%M Zulu") }}

{{ post.content | safe }}
{% endblock %} diff --git a/templates/weblog.html b/templates/weblog.html index a20f356..88abf61 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -2,8 +2,11 @@ {% block content %}
{% for post in paginator.pages %} -
-

{{ post.title }}

+
+

+ {{ post.title }} + {{ post.date | date }} +

{% if post.summary %} {{ post.summary | safe }} {% endif %} -- cgit v1.2.3