38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="ISO-8859-1" />
|
|
<meta name="description" content="A website made by C4 Patino" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
|
|
<link rel="stylesheet" type="text/css" href='{% static "main.css" %}' />
|
|
|
|
<title>House Wars</title>
|
|
</head>
|
|
<body>
|
|
<header class="site-header"></header>
|
|
<main role="main" class="container">
|
|
<div class="row">
|
|
<!-- Message Display -->
|
|
<div class="col-md-8">
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="alert alert-{{ message.tags }}">
|
|
{{ message }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<!-- Main content -->
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</body>
|
|
</html>
|