diff --git a/templates/base.html b/templates/base.html index 6fad7f8..1364a4d 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,10 +3,18 @@ - + - + jotoho.de - A personal website @@ -15,39 +23,60 @@
-

jotoho.de - My personal website

+

jotoho.de - My personal website


-
- {% block content %} {% endblock %} -
+
{% block content %} {% endblock %}

diff --git a/templates/page.html b/templates/page.html index 0887d82..0d88a20 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,26 +1,29 @@ -{% extends "base.html" %} +{% extends "base.html" %} {% block metadata %} -{% block metadata %} + - - -{% endblock %} - -{% block content %} -

- {{ page.title }} -

- {% if page.date and page.date is defined %} -

- Published on: {{ page.date | date(format="%A, %e %B %Y %R %Z", timezone="Europe/Berlin") }} -

- {% endif %} - {% if page.updated and page.updated != page.date %} -

- Last updated on: {{ page.updated | date(format="%A, %e %B %Y %R %Z", timezone="Europe/Berlin") }} -

- {% endif %} -
- {{ page.content | safe }} -
+{% endblock %} {% block content %} +

{{ page.title }}

+{% if page.date and page.date is defined %} +

+ Published on: + +

+{% endif %} {% if page.updated and page.updated != page.date %} +

+ Last updated on: + +

+{% endif %} +
{{ page.content | safe }}
{% endblock content %}