{% extends "layout.html" %} {% block title %}{{title}}{% endblock %} {% block page %}{{title}}{% endblock %} {% block heading %} {{ super() }} {% endblock %} {% block content %}

This is the start of my child template


My string: {{my_string}}

Value from the list: {{my_list[3]}}

Loop through the list:

This is the end of my child template

Current date/time: {{ current_time | datetimefilter }}

{% endblock %}