{% extends 'sitewide/layout.html' %} {% load static %} {% block main %}
You are seeing this page by default. Now create your own pages. Follow the
steps below to quickly populate your project.
project/app/templates/app/your_template.html
project/templates/your_template.html
{% verbatim %}{% extends 'sitewide/layout.html' %}{% endverbatim %}
{% verbatim %}{% load static %}{% endverbatim %}
{% verbatim %}{% block main %}{% endverbatim %}
{% verbatim %}<-- Add your HTML here --!>{% endverbatim %}
{% verbatim %}{% endblock %}{% endverbatim %}
{% verbatim %}
{% main %}{% endverbatim %} block (see above, replacing the
comment with your HTML). Save the template.
What about the sidebar, the header and the footer? Yes, you can modify all
those with one YAML file. Just one, and you won't have to do it again for other pages.
You could easily create themes with this thing. Do you want to know how?
See you at the 'Docs'.
What are you waiting for?