15 lines
363 B
HTML
15 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{% endblock %} - Anonkun</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/anonkun.css">
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<ul id="header">
|
|
<li><a href="{{ url_for('views.index') }}">Home</a></li>
|
|
</ul>
|
|
<div id="content">{% block content %}{% endblock %} </div>
|
|
</body>
|
|
</html>
|