mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-27 16:05:14 +00:00
25 lines
822 B
HTML
25 lines
822 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ title }}</title>
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon.ico" />
|
|
<link rel="stylesheet" href="/css/swiper-bundle.min.css">
|
|
<link href="/css/tailwind.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<section class="h-screen w-full bg-white dark:bg-gradient-radial-mobile dark:lg:bg-gradient-radial">
|
|
{% include "navbar.html" %}
|
|
</section>
|
|
|
|
{{ content | safe }}
|
|
|
|
{% include "footer.html" %}
|
|
|
|
<script src="/js/swiper-bundle.min.js"></script>
|
|
<script src="/js/script.js"></script>
|
|
</body>
|
|
</html> |