FloriCore/member/templates/master.html

15 lines
235 B
HTML

{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{% static 'member/css/styles.css' %}">
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>