2023-02-19 15:40:25 -05:00
|
|
|
<!DOCTYPE html>
|
2023-09-09 00:36:22 +02:00
|
|
|
<html lang="en" data-bs-theme="dark">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
|
|
|
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2023-02-20 21:55:12 -05:00
|
|
|
{% include "core/frontend/widgets/topbar.jinja" %}
|
2023-09-09 00:36:22 +02:00
|
|
|
<div class="container">
|
|
|
|
|
{% block content %}
|
|
|
|
|
<h1>{{ server_name }}</h1>
|
|
|
|
|
{% endblock content %}
|
|
|
|
|
</div>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
|
|
|
|
|
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
|
|
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
|
</body>
|
|
|
|
|
|
2023-02-19 15:40:25 -05:00
|
|
|
</html>
|