base.jinja2 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. {% set title_s %}{% block title %}ERROR{% endblock %}{% endset %}
  3. <!--
  4. Friendly Telegram (telegram userbot)
  5. Copyright (C) 2018-2019 The Authors
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License as published by
  8. the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU Affero General Public License for more details.
  14. You should have received a copy of the GNU Affero General Public License
  15. along with this program. If not, see <https://www.gnu.org/licenses/>.
  16. -->
  17. <html>
  18. <head>
  19. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
  20. <title>Hikka</title>
  21. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  22. <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  23. <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
  24. <link rel="icon" href="https://github.com/hikariatama/Hikka/raw/master/assets/hikka_pfp.png">
  25. {% block head %}{% endblock %}
  26. </head>
  27. <body>
  28. <div class="main_content">
  29. {% block content %}
  30. <p><b>An internal error occured.</b></p>
  31. {% endblock %}
  32. </div>
  33. <div id="blackhole"></div>
  34. {% block after %}
  35. {% endblock %}
  36. </body>
  37. </html>