24 lines
665 B
HTML
24 lines
665 B
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>AerBim</title>
|
|
{% include 'head_includes/fonts_include.html' %}
|
|
<link rel="stylesheet" href="{% static "fonts/fonts.css" %}">
|
|
<link rel="stylesheet" href="{% static "aerbimCSS.css" %}">
|
|
<script src="{% static "jquery_v3_6_4.js" %}"></script>
|
|
<script src="{% static "aerbimJS.js" %}"></script>
|
|
|
|
</head>
|
|
<body>
|
|
{# {% csrf_token %}#}
|
|
{% include "blocks/static/header.html" %}
|
|
<div class="content">
|
|
{% block CONTENT %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html> |