2018-11-11 12:41:48 +00:00
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
2018-11-16 10:41:14 +00:00
|
|
|
{% load utils %}
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2019-02-27 08:33:12 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2018-11-16 10:41:14 +00:00
|
|
|
<title>
|
|
|
|
{% block title %}
|
|
|
|
{% title %}
|
|
|
|
{% endblock %}
|
|
|
|
</title>
|
2018-11-26 16:17:04 +00:00
|
|
|
<link rel="icon" type="image/png" href="{% static 'img/logo.png' %}">
|
2018-12-16 15:02:03 +00:00
|
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'img/logo.png' %}">
|
2018-11-11 12:41:48 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/patternfly.min.css' %}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/patternfly-additions.min.css' %}">
|
2019-02-25 12:02:50 +00:00
|
|
|
<style>
|
|
|
|
.login-pf {
|
|
|
|
background-attachment: fixed;
|
|
|
|
scroll-behavior: smooth;
|
2019-02-27 08:33:12 +00:00
|
|
|
background-size: cover;
|
2019-02-25 12:02:50 +00:00
|
|
|
}
|
|
|
|
</style>
|
2018-12-09 20:07:18 +00:00
|
|
|
{% block head %}
|
|
|
|
{% endblock %}
|
2018-11-11 12:41:48 +00:00
|
|
|
</head>
|
2018-11-25 11:31:55 +00:00
|
|
|
<body {% if is_login %} class="login-pf" {% endif %}>
|
2018-11-11 12:41:48 +00:00
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
<script src="{% static 'js/jquery.min.js' %}"></script>
|
|
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
|
|
|
<script src="{% static 'js/patternfly.min.js' %}"></script>
|
2019-02-21 16:01:12 +00:00
|
|
|
<script src="{% static 'js/passbook.js' %}"></script>
|
2018-11-11 12:41:48 +00:00
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|
2018-12-16 15:02:03 +00:00
|
|
|
<div class="modals">
|
|
|
|
{% include 'partials/about_modal.html' %}
|
|
|
|
</div>
|
2018-11-11 12:41:48 +00:00
|
|
|
</body>
|
2018-12-09 20:07:18 +00:00
|
|
|
</html>
|