FloriCore/member/templates/master.html

16 lines
370 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-07-19 11:32:12 +02:00
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
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>
{% include "partials/sidebar.html" %}
<div class="main">
{% block content %}{% endblock %}
</div>
2025-05-13 07:40:15 +02:00
</body>
</html>