This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
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">
|
2018-11-16 10:41:14 +00:00
|
|
|
<title>
|
|
|
|
{% block title %}
|
|
|
|
{% title %}
|
|
|
|
{% endblock %}
|
|
|
|
</title>
|
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' %}">
|
|
|
|
</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>
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|