Menu
×
×
Correct!
Exercise:How can we include a file called 'footer.html' in a Django template?
<h1>Hello</h1>
<p>This is a Django template with a footer.</p>
{% @(21) %}
<h1>Hello</h1>
<p>This is a Django template with a footer.</p>
{% include 'footer.html' %}
<h1>Hello</h1>
<p>This is a Django template with a footer.</p>
{% include "footer.html" %}
Not CorrectClick here to try again. Correct!Next ❯ |