<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" href="style.css" />
<title>{% block title %}My amazing site{% endblock %}</title>
</head>
###################################################################
# comments
{# {% if foo %}bar{% else %} #}
{% comment %}
some text that will not displayed
{% endcomment %}
###################################################################
# including other templates
{% extends "base.html" %}
# or
{% include "template.html" %}
# or
{{ block.super }}
# overiding blocks of extended template
{% block content %}
{% endblock content %}
###################################################################
#