mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
{% load static i18n %}
 | 
						|
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
    <meta name="renderer" content="webkit">
 | 
						|
    <title>
 | 
						|
        {% if interface and interface.login_title %}
 | 
						|
            {{ interface.login_title }}
 | 
						|
        {% else %}
 | 
						|
            Jumpserver
 | 
						|
        {% endif %}
 | 
						|
    </title>
 | 
						|
    {% if interface and interface.favicon %}
 | 
						|
            <link rel="shortcut icon" href="{{ MEDIA_URL }}{{ interface.favicon }}" type="image/x-icon">
 | 
						|
    {% else %}
 | 
						|
        <link rel="shortcut icon" href="{% static 'img/facio.ico' %}" type="image/x-icon">
 | 
						|
    {% endif %}
 | 
						|
    {% include '_head_css_js.html' %}
 | 
						|
    <link href="{% static 'css/jumpserver.css' %}" rel="stylesheet">
 | 
						|
    {% block custom_head_css_js %} {% endblock %}
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
<div id="wrapper">
 | 
						|
    {% include '_left_side_bar.html' %}
 | 
						|
    <div id="page-wrapper" class="gray-bg">
 | 
						|
        {% include '_header_bar.html' %}
 | 
						|
        {% block help_message %} {% endblock %}
 | 
						|
        {% include '_message.html' %}
 | 
						|
        {% block content %}{% endblock %}
 | 
						|
        {% include '_footer.html' %}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
</body>
 | 
						|
{% include '_foot_js.html' %}
 | 
						|
{% block custom_foot_js %} {% endblock %}
 | 
						|
</html>
 |