base.jinja2 920 B

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