{% extends 'base.html' %} {% load static %} {% load base_extras %} {% block head-extra %} {% endblock %} {% block content %}

Welcome to {% project_name %}

To change this page, create a template/index.html template in one of you app directories

See also the the django template documentation

This is what this file looks like

{% verbatim %}
{% extends 'base.html' %}
{% load static %}
{% load base_extras %}

{% block content %}
<div class="jumbotron">
    <h1>Welcome to {% project_name %}</h1>
    <h5>To change this page, create a <code>template/index.html</code> template in one of you app directories</h2>
    <p>
        See also the
        <a href="https://docs.djangoproject.com/en/2.2/ref/templates/language/">
            the django template documentation
        </a>
    </p>
</div>
<div class="container">
    <h2>This is what this file looks like</h2>
    <pre><code>
        ...
    </code></pre>
</div>
{% endblock %}

{% endverbatim %}
{% endblock %}