{% extends "base.html" %} {% block title %} {% if page.permalink is containing("weblog") %} {{ page.title }} - Yaroslav's weblog {% elif page.permalink is containing("food") %} {{ page.title }} - Yaroslav's recipe book {% else %} {{ page.title }} - Yaroslav's website {% endif %} {% endblock %} {% block header %}

{{ page.title }}

Published {{ page.date | date(format="%b %d, %Y %H:%M UTC") }} on {% if page.permalink is containing("weblog") %} Yaroslav's weblog

{% elif page.permalink is containing("food") %} Yaroslav's recipe book

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