aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 136c66dc2ff218e5d4657cb7b96c756b6fb7bf57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title>{% block title %}CodeMash{% endblock %}</title>
        <meta name="viewport" content="width=device-width">
    </head>
    <body>
        {% block content %}
        {% endblock %}
    </body>
</html>