34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load static %}
 | 
						|
{% load i18n %}
 | 
						|
{% load utils %}
 | 
						|
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>
 | 
						|
      {% block title %}
 | 
						|
        {% title %}
 | 
						|
      {% endblock %}
 | 
						|
    </title>
 | 
						|
    <link rel="icon" type="image/png" href="{% static 'img/logo.png' %}">
 | 
						|
    <link rel="shortcut icon" type="image/png" href="{% static 'img/logo.png' %}">
 | 
						|
    <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' %}">
 | 
						|
    {% block head %}
 | 
						|
    {% endblock %}
 | 
						|
  </head>
 | 
						|
  <body {% if is_login %} class="login-pf" {% endif %}>
 | 
						|
    {% 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 %}
 | 
						|
    <div class="modals">
 | 
						|
      {% include 'partials/about_modal.html' %}
 | 
						|
    </div>
 | 
						|
  </body>
 | 
						|
</html>
 |