aboutsummaryrefslogtreecommitdiff
path: root/cherry_lesana/data/templates/base.html
blob: 232a76ef7404d96ec88a7f13b8a2e4956f5816ba (plain)
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>