Files
civic-fix/civicfix/templates/base.html
T
2025-08-18 21:04:22 +05:30

16 lines
392 B
HTML

<!-- base.html -->
{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>Civixfix - {% block title %}{% endblock %}</title>
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
</head>
<body>
<div class="container mt-4">
{% block content %}{% endblock %}
</div>
<script src="{% static 'js/bootstrap.bundle.min.js' %}"></script>
</body>
</html>