Heroku/web-resources/base.jinja2

26 lines
944 B
Django/Jinja
Executable File

<!--
©️ Dan Gazizullin, 2021-2023
This file is a part of Hikka Userbot
🌐 https://github.com/hikariatama/Hikka
You can redistribute it and/or modify it under the terms of the GNU AGPLv3
🔑 https://www.gnu.org/licenses/agpl-3.0.html
-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<title>Hikka userbot</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<link rel="icon" href="https://github.com/hikariatama/assets/raw/master/cherry-blossom_1f338.png">
{% block head %}{% endblock %}
</head>
<body>
<div class="main_content">{% block content %}{% endblock %}</div>
{% block after %}{% endblock %}
</body>
</html>