Files
WYGIWYH/app/templates/layouts/base_auth.html
2025-11-02 03:03:22 -03:00

30 lines
694 B
HTML

{% load pwa %}
{% load title %}
<!doctype html>
<html lang="en" data-theme="wygiwyh_dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
{% filter site_title %}
{% block title %}
{% endblock title %}
{% endfilter %}
</title>
{% include 'includes/head/favicons.html' %}
{% progressive_web_app_meta %}
{% include 'includes/styles.html' %}
{% block extra_styles %}{% endblock %}
</head>
<body>
<div id="content">
{% block content %}{% endblock %}
</div>
{% include 'includes/scripts.html' %}
{% block extra_js %}{% endblock %}
</body>
</html>