aboutsummaryrefslogtreecommitdiff
path: root/codemash/templates/base.html
blob: bb852564aaef705ebddaa2d0947e95e83d9ddcd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
    <head>
        <title>Hello Codemash: {% block title %}TODO: add custom content using child templates{% endblock %}</title>
    </head>
    <body>
        <div id="header">...header...</div>
        {% block main %}TODO: add custom content using child templates{% endblock %}
        <div id="footer">...footer...</div>
    </body>
</html>