<!DOCTYPE html>
<html lang="de" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}MyVPN | Dezentralisierte, umweltfreundliche VPN- und Bot-Hosting-Services{% endblock %}</title>
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('assets/img/favicons/apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('assets/img/favicons/favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('assets/img/favicons/favicon-16x16.png') }}">
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('assets/img/favicons/favicon.ico') }}">
<link rel="manifest" href="{{ asset('assets/img/favicons/manifest.json') }}">
<meta name="msapplication-TileImage" content="{{ asset('assets/img/favicons/mstile-150x150.png') }}">
<meta name="theme-color" content="#ffffff">
<!-- Always load the base theme -->
<link href="{{ asset('assets/css/theme.css') }}" rel="stylesheet" />
<!-- Conditional Loading of Dark Mode CSS -->
{% if settings.isDarkMode() %}
<link href="{{ asset('assets/css/theme-dark.css') }}" rel="stylesheet" />
{% endif %}
<!-- FontAwesome für Icons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap" rel="stylesheet">
{% block stylesheets %}
<!-- Weitere Stylesheets können hier hinzugefügt werden -->
{% endblock %}
</head>
<body>
<main class="main" id="top">
{% block navbar %}
<!-- Navigation -->
{% include 'partials/navbar.html.twig' %}
{% endblock %}
{% block body %}
<!-- Seiteninhalt -->
{% endblock %}
</main>
<!-- Modals -->
{% include 'partials/modal.html.twig' %}
{% block footer %}
<!-- Footer -->
{% include 'partials/navbar_footer.html.twig' %}
{% endblock %}
<!-- JavaScript Dateien -->
<script src="{{ asset('vendors/@popperjs/popper.min.js') }}"></script>
<script src="{{ asset('vendors/bootstrap/bootstrap.min.js') }}"></script>
<script src="{{ asset('vendors/is/is.min.js') }}"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=window.scroll"></script>
<script src="{{ asset('assets/js/theme.js') }}"></script>
{% block javascripts %}
<!-- Weitere JS-Skripte können hier hinzugefügt werden -->
{% endblock %}
</body>
</html>