45 lines
1.2 KiB
Twig
45 lines
1.2 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en"{% if darkmode is defined %} class="{{ darkmode }}"{% endif %}>
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="robots" content="noindex, nofollow, noarchive"/>
|
|
<meta name="googlebot" content="nosnippet"/>
|
|
|
|
<!-- CSS -->
|
|
{% if theme_css is empty %}
|
|
<link href="{{ basehref|default('') }}templates/Froxlor/assets/css/main.css" rel="stylesheet" type="text/css" />
|
|
{% else %}
|
|
{{ theme_css|raw }}
|
|
{% endif %}
|
|
{% block custom_css %}{% endblock %}
|
|
|
|
<!-- Scripts -->
|
|
{% if theme_js is empty %}
|
|
<script type="text/javascript" src="{{ basehref|default('') }}templates/Froxlor/assets/js/main.js"></script>
|
|
{% else %}
|
|
{{ theme_js|raw }}
|
|
{% endif %}
|
|
{% block custom_js %}{% endblock %}
|
|
<title>Froxlor
|
|
{% if page_title %}
|
|
|
|
|
{{ page_title }}
|
|
{% endif %}
|
|
</title>
|
|
</head>
|
|
<body {% if body_class is defined %}class="{{ body_class }}"{% endif %}>
|
|
{{ global_errors|raw }}
|
|
|
|
{% block navigation %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container-fluid">
|
|
{% block content %}{% endblock %}
|
|
{{ include('Froxlor/footer.html.twig') }}
|
|
</div>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|