FloriCore/member/templates/master.html

15 lines
235 B
HTML
Raw Normal View History

2025-05-14 18:12:17 +02:00
{% load static %}
2025-05-13 07:40:15 +02:00
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
2025-05-14 18:12:17 +02:00
<link rel="stylesheet" href="{% static 'member/css/styles.css' %}">
2025-05-13 07:40:15 +02:00
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>