1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html> <head> <title>{% block title %}{% endblock %}</title> <link rel="stylesheet" href="/static/style.css" /> {% block head %} {% endblock %} </head> <body> <div id="content">{% block content %}{% endblock %}</div> <div id="footer"> </div> </body> </html>