inventory/inventory/templates/base.html

16 lines
No EOL
357 B
HTML

{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" content="text/css" href="{% static 'inventory/css/main.css' %}">
{% block head %}{% endblock %}
</head>
<body>
<main>
{% block content %}
{% endblock %}
</main>
</body>
</html>