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.