21 lines
513 B
HTML
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> |