2021-07-26 14:11:19 +00:00
|
|
|
{% load static i18n %} {% get_current_language as LANGUAGE_CODE %}
|
2021-07-19 14:36:10 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{LANGUAGE_CODE}}">
|
2021-07-26 14:11:19 +00:00
|
|
|
<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" />
|
2021-07-19 14:36:10 +00:00
|
|
|
|
|
|
|
<!-- Vendor CSS -->
|
|
|
|
<!-- Bootstrap Core CSS -->
|
2021-07-26 14:11:19 +00:00
|
|
|
<link href="{% static 'matrixhosting/css/bootstrap.min.css' %}" rel="stylesheet" />
|
2021-07-19 14:36:10 +00:00
|
|
|
<!-- Icon Fonts -->
|
2021-07-26 14:11:19 +00:00
|
|
|
<link
|
|
|
|
href="{% static 'matrixhosting/css/fontawesome-all.min.css' %}"
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
/>
|
2021-07-19 14:36:10 +00:00
|
|
|
<!-- Custom CSS -->
|
2021-07-26 14:11:19 +00:00
|
|
|
<link
|
|
|
|
href="{% static 'matrixhosting/css/theme.css' %}"
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
/>
|
|
|
|
{% block css_extra %} {% endblock css_extra %}
|
2021-07-19 14:36:10 +00:00
|
|
|
|
|
|
|
<!-- External Fonts -->
|
2021-07-26 14:11:19 +00:00
|
|
|
<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>
|
2021-07-19 14:36:10 +00:00
|
|
|
|
|
|
|
<!-- jQuery -->
|
2021-07-26 14:11:19 +00:00
|
|
|
<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>
|
2021-07-19 14:36:10 +00:00
|
|
|
<!-- Custom JS -->
|
2021-07-26 14:11:19 +00:00
|
|
|
<script src="{% static 'matrixhosting/js/switcher.min.js' %}"></script>
|
|
|
|
{% block js_extra %} {% endblock js_extra %}
|
|
|
|
<script src="{% static 'matrixhosting/js/theme.js' %}"></script>
|
|
|
|
</body>
|
2021-07-19 14:36:10 +00:00
|
|
|
</html>
|