16 lines
504 B
HTML
16 lines
504 B
HTML
{% from 'utils.html' import root with context -%}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="color-scheme" content="dark">
|
|
<title>{% if title %}{{ title }} - {% else %}{% endif %}DLibrary</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ root() }}static/dlibrary.css">
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block body required %}{% endblock %}
|
|
</body>
|
|
</html>
|