base_pub.html 648 B

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