Django template mode <!doctype html> <html> <head> <title>My Django web application</title> </head> <body> <h1> {{ page.title }} </h1> <ul class="my-list"> {% for item in items %} <li>{% item.name %}</li> {% empty %} <li>You have no items in your list.</li> {% endfor %} </ul> </body> </html> Mode for HTML with embedded Django template markup. MIME types defined: text/x-django