cmc-sales/cmc-django/cmcsales/cmc/templates/base.html
Karl Cordes 6ad0e74ad6 Add instructions to README for docker compose
add cmc-django
add finley to userpasswd
2025-06-03 07:28:32 +10:00

21 lines
513 B
HTML

{% load static %}
<!DOCTYPE html>
<html data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}CMC Sales{% endblock %}</title>
<link rel="stylesheet" href="{% static 'cmc.css' %}">
{% block extra_head %}{% endblock %}
</head>
<body>
{% include 'partials/nav.html' %}
<main>
{% block content %}
{% endblock %}
</main>
{% block extra_js %}{% endblock %}
</body>
</html>