{% extends 'base.html' %} {% load snippet_tags %} {% load thing_tags %} {% block title %} {% snippet 'home-title' striptags %}Your Homepage Title Here{% endsnippet %} {% endblock %} {% block head %} {% endblock head %} {% block body %} {% include "header.html" %}

{% snippet 'home-title' striptags %}Your Homepage Title Here{% endsnippet %}

{% snippet 'home-body' %}

Put some body text on your homepage

{% endsnippet %}
{% get_things_by_type articles.article as things limit=2 %} {% for thing in things %}

{{ thing.name }}

{{ thing.content|safe|truncatewords_html:"20" }}
{% endfor %}
{% include "footer.html" %} {% endblock body %}