40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="{{ LANGUAGE_CODE }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>AerBim</title>
|
|
{% include 'head_includes/fonts_include.html' %}
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
|
{# <link rel="stylesheet" href="{% static "fonts/fonts.css" %}">#}
|
|
|
|
<link rel="stylesheet" href="{% static "aerbimCSS.css" %}">
|
|
<link rel="stylesheet" href="{% static "aerbimCSSMOBILE.css" %}">
|
|
<script src="{% static "jquery_v3_6_4.js" %}"></script>
|
|
<script src="{% static "aerbimJS.js" %}"></script>
|
|
<meta name="viewport" content="width=100%,maximum-scale=5,minimum-scale=1,initial-scale=1">
|
|
|
|
</head>
|
|
<body>
|
|
{% csrf_token %}
|
|
<div class="block_overlay hide"></div>
|
|
{% include "blocks/static/header.html" %}
|
|
{% include "blocks/b_curtain.html" %}
|
|
|
|
<div class="content">
|
|
{% block CONTENT %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
|
|
|
|
{% include 'blocks/b_faq.html' %}
|
|
|
|
|
|
{% include 'blocks/b_footer.html' %}
|
|
</body>
|
|
</html> |