uncloud/matrixhosting/templates/matrixhosting/base.html

65 lines
2.2 KiB
HTML

{% load static compress i18n %} {% get_current_language as LANGUAGE_CODE %}
<!DOCTYPE html>
<html lang="{{LANGUAGE_CODE}}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Matrix Hosting by ungleich" />
<meta name="author" content="ungleich glarus ag" />
<title>
Matrix Hosting - {% block title %} made in Switzerland {% endblock %}
</title>
<link href="{% static 'matrixhosting/images/favicon.png' %}" rel="icon" />
<!-- Vendor CSS -->
<!-- Bootstrap Core CSS -->
<link href="{% static 'matrixhosting/css/bootstrap.min.css' %}" rel="stylesheet" />
<!-- Icon Fonts -->
<link
href="{% static 'matrixhosting/css/fontawesome-all.min.css' %}"
rel="stylesheet"
type="text/css"
/>
<!-- Custom CSS -->
{% compress css %}
<link
href="{% static 'matrixhosting/css/theme.css' %}"
rel="stylesheet"
type="text/css"
/>
{% endcompress %}
{% block css_extra %} {% endblock css_extra %}
<!-- External Fonts -->
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i' type='text/css'>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div data-loader="dual-ring"></div>
</div>
<!-- Preloader End -->
<div id="main-wrapper">
{% block navbar %} {% include "matrixhosting/includes/_navbar.html" with transparent_header=transparent_header %} {%endblock %}
{% block content %} {% endblock %}
{% include "matrixhosting/includes/_footer.html" %}
</div>
<!-- jQuery -->
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<script src="{% static 'matrixhosting/js/bootstrap.bundle.min.js' %}"></script>
<!-- Custom JS -->
{% block js_extra %} {% endblock js_extra %}
{% compress js %}
<script src="{% static 'matrixhosting/js/theme.js' %}"></script>
{% endcompress %}
</body>
</html>