aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 779181a62076bdf8393c320789f9ef69bab467c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>{% block title %}partmom{% endblock %}</title>
  <link rel="stylesheet" type="text/css" href="/static/style.css" />
  {% block head %}{% endblock %}
</head>
<body>
<div class="content">
{% block content %}{% endblock %}
</div>
</body>
</html>