{% extends "default.html" %}
{%- block body %}
{# The tag above means - insert everything in this file into the {%- block body %} of the default.html template #}
{# The big featured header #}
{{ ctx.cfg.user.title|e }}
{{ ctx.cfg.user.description|e }}
Scroll Down
{# The main content area on the homepage #}
{# The tag below includes the post loop - partials/loop.html #}
{% include 'partials/loop.html' %}
{%- endblock %}