base.html 796 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="{{ url_for('static', filename='style/style.min.css') }}">
  8. {%block head%}{%endblock%}
  9. <title>BepInBuilds - {% block title %}{% endblock %}</title>
  10. </head>
  11. <body>
  12. <header>
  13. <a class="brand" href="{{ url_for('index') }}">
  14. <img src="{{ url_for('static', filename='img/logo.png') }}" alt="BepInEx logo">
  15. <span>BepInBuilds</span>
  16. </a>
  17. <span>
  18. Powered with 🐴
  19. </span>
  20. </header>
  21. {% include "nav.html" %}
  22. <main>
  23. {%block content%}{%endblock%}
  24. </main>
  25. </body>
  26. </html>