gaisen/templates/base.html

26 lines
808 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}{% endblock %} - {{ config.get("name") }}</title>
<link rel="stylesheet" href="https://unpkg.com/easymde/dist/easymde.min.css">
<script src="https://unpkg.com/easymde/dist/easymde.min.js"></script>
{# <script src="{{ url_for('static', filename='lib/htmx.min.js') }}"></script> #}
<link
rel="stylesheet"
href="{{ url_for('static', filename='style/main.css') }}"
/>
<link rel="icon" href="{{ config.get("favicon") }}">
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>