You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
974 B

9 months ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>{% block title %}{{title}}{% endblock%}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS reset, uncomment this line to supress the default browser CSS style -->
<link rel="stylesheet" type="text/css" href="static/css/reset.css" />
<!-- CSS that is applied but outside of pad (for interface, etc) -->
<link rel="stylesheet" type="text/css" href="static/css/interface.css" />
{% block head %}{% endblock %}
</head>
<body class="{% block body_class %}{% endblock %}">
<nav>
<ul>
<li><a href="/">index</a></li>
<li><a href="/draw.html">draw</a></li>
<li><a href="/font.html">font</a></li>
<!-- <li><a href="/catalogue.html">catalogue</a></li> -->
9 months ago
</ul>
</nav>
{% block body %}{% endblock %}
</body>
</html>