base.html 578 B

12345678910111213141516171819
  1. {% load static %}
  2. <!DOCTYPE html>
  3. <html lang="en" style="font-size:0.75em">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>{% block title %}Shift Manager{% endblock title %}</title>
  8. <link rel="stylesheet" href="{% static 'main/css/styles.css' %}">
  9. <link rel="icon"href="{% static 'favicon.png' %}">
  10. {% load bootstrap5 %}
  11. {% bootstrap_css %}
  12. {% bootstrap_javascript %}
  13. </head>
  14. <body>
  15. {% block content %}
  16. <!-- Content goes here -->
  17. {% endblock %}
  18. </body>
  19. </html>