Create a homepage

Report a typo

You have base.html as a parent template with the following structure:

<html>
<header> header</header>
<body> {% block body %}{% endblock %} </body>
<footer>footer</footer>
</html>

Create a simple homepage that displays the text jinja_ninja by rearranging the code below.

Reorder lines using drag or arrows. Adjust indentation with left buttons
                {% endblock %}
              
                {% block body %}
              
                jinja_ninja
              
                {% extends "base.html" %}
              
___

Create a free account to access the full topic