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>
|
2025-06-12 21:50:06 +02:00
|
|
|
{% include "partials/sidebar.html" %}
|
|
|
|
|
<div class="main">
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</div>
|
2025-05-13 07:40:15 +02:00
|
|
|
</body>
|
|
|
|
|
</html>
|