default = """ {% set base = "" %} {{ page_title }} {% block head_includes %} {% endblock %}

{{ page_title }}

Home Categories About 🌓︎
{% block content %} {% endblock %}
""" index = """ {% extends "default.html" %} {% block head_includes %} {% endblock %} {% block content %}
{% for content_item in content_items %}
{% if content_item.image_file %} {{ content_item.title }} {% else %} {{ content_item.title }} {% endif %}
{{ content_item.title }}

{{ content_item.preview | safe}}... read more

{% endfor %}
{% endblock %} """ content_item=""" {% extends "default.html" %} {% block head_includes %} {% if content_item.css_file %} {% endif %} {% endblock %} {% block content %}
{% if content_item.image_file %}{% endif %} {% if not content_item.omit_second_title %}

{{ content_item.title }}

{% endif %}
{{ content_item.html | safe }}
{% for category in content_item.categories %} {{ category }} {% endfor %}
← Back
{% endblock %} {% block footer_includes %} {% if content_item.js_file %} {% endif %} {% endblock %} """