26 lines
848 B
HTML
26 lines
848 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="{{ url_for('static', filename='scripts/easymde/easymde.min.css') }}">
|
|
<script src="{{ url_for('static', filename='scripts/easymde/easymde.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='scripts/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>
|