{% extends 'sitewide/layout.html' %} {% load static %} {% block main %}

Sitewide is Working!

This is a sample content. You can create yours with the steps below:

  1. Add a blank template to your preferred destination (either the app template folder or project templates folder.
  2. Put the following tags to the new template file:
    {% verbatim %}{% extends 'sitewide/layout.html' %}{% endverbatim %}
    {% verbatim %}{% load static %}{% endverbatim %}
    {% verbatim %}{% block main %}{% endverbatim %}
    ** Add your HTML here **
    {% verbatim %}{% endblock %}{% endverbatim %}
  3. Add your custon HTML markup within the main block (see above) and save the template.
  4. Point your View to the template.
  5. Enjoy the view!

That's not all ...

What about the sidebar, the header and footer? It looks too simple. Would you like to change the theme? Perhaps, you have other questions? Find our more from docs!
Have fun!

{% endblock %}