19 lines
503 B
Plaintext
19 lines
503 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
{% block head %}
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<title>{% block title %}Roxy{% endblock title %}</title>
|
||
|
<link rel="stylesheet" href="/static/css/style.css">
|
||
|
<link rel="icon" href="./favicon.ico" type="image/x-icon">
|
||
|
{% endblock head %}
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block body %}
|
||
|
{% endblock body %}
|
||
|
</body>
|
||
|
</html>
|
||
|
|