64 lines
2.6 KiB
HTML
64 lines
2.6 KiB
HTML
{% load static %}
|
||
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<title>JourneyJoker - {{ title }}</title>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
<link rel="icon" href="{% static "frontend/images/favicon.png" %}" type="image/x-icon">
|
||
|
||
<!-- Google Fonts -->
|
||
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i%7CMerriweather:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
|
||
|
||
<!-- Bootstrap Stylesheet -->
|
||
<link rel="stylesheet" href="{% static "vendor/css/bootstrap.min4.2.1.css" %}">
|
||
<link rel="stylesheet" type="text/css" href="{% static "vendor/css/bootstrap-reboot4.2.1.css" %}">
|
||
|
||
<!-- Sidebar Stylesheet -->
|
||
<link rel="stylesheet" type="text/css" href="{% static "vendor/css/jquery.mCustomScrollbar.min.css" %}">
|
||
|
||
<!-- Font Awesome Stylesheet -->
|
||
<link rel="stylesheet" href="{% static "frontend/css/font-awesome.min.css" %}">
|
||
|
||
<!-- Custom Stylesheets -->
|
||
<link rel="stylesheet" href="{% static "frontend/css/style.css" %}">
|
||
<link rel="stylesheet" id="cpswitch" href="{% static "frontend/css/orange.css" %}">
|
||
<link rel="stylesheet" href="{% static "frontend/css/responsive.css" %}">
|
||
</head>
|
||
|
||
|
||
<body>
|
||
|
||
<!--====== LOADER =====-->
|
||
<div class="loader"></div>
|
||
|
||
|
||
<!--===== FULL-PAGE-FORM ====-->
|
||
<section>
|
||
<div class="colored-border"></div>
|
||
<div id="full-page-form">
|
||
<div class="container">
|
||
<div class="row">
|
||
<div class="col-md-12">
|
||
|
||
{% block formspace %}
|
||
{% endblock %}
|
||
|
||
<p class="full-page-copyright">© 2020 – 2021 <a href="https://kumi.systems/">Kumi Systems e.U.</a> All rights reserved.</p>
|
||
</div><!-- end columns -->
|
||
</div><!-- end row -->
|
||
</div><!-- end container -->
|
||
</div><!-- end full-page-form -->
|
||
<div class="colored-border"></div>
|
||
</section>
|
||
|
||
|
||
<!-- Page Scripts Starts -->
|
||
<script src="{% static "vendor/js/jquery-3.3.1.min.js" %}"></script>
|
||
<script src="{% static "vendor/js/jquery.mCustomScrollbar.concat.min.js" %}"></script>
|
||
<script src="{% static "vendor/js/bootstrap.min4.2.1.js" %}"></script>
|
||
<script src="{% static "frontend/js/custom-navigation.js" %}"></script>
|
||
<!-- Page Scripts Ends -->
|
||
</body>
|
||
</html>
|
||
|