| 12345678910111213141516171819 |
- {% load static %}
- <!DOCTYPE html>
- <html lang="en" style="font-size:0.75em">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>{% block title %}Shift Manager{% endblock title %}</title>
- <link rel="stylesheet" href="{% static 'main/css/styles.css' %}">
- <link rel="icon"href="{% static 'favicon.png' %}">
- {% load bootstrap5 %}
- {% bootstrap_css %}
- {% bootstrap_javascript %}
- </head>
- <body>
- {% block content %}
- <!-- Content goes here -->
- {% endblock %}
- </body>
- </html>
|