jumpserver/apps/templates/base.html

31 lines
899 B
HTML
Raw Normal View History

2016-09-18 06:28:34 +00:00
{% 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">
2019-03-27 04:20:43 +00:00
<title>{{ JMS_TITLE }}</title>
<link rel="shortcut icon" href="{{ FAVICON_URL }}" type="image/x-icon">
{% include '_head_css_js.html' %}
2016-09-30 10:25:50 +00:00
<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' %}
2017-12-13 09:21:08 +00:00
{% block help_message %} {% endblock %}
2018-02-26 08:57:34 +00:00
{% include '_message.html' %}
{% block content %}{% endblock %}
{% include '_footer.html' %}
</div>
</div>
</body>
{% include '_foot_js.html' %}
2016-08-17 16:47:34 +00:00
{% block custom_foot_js %} {% endblock %}
2016-09-18 06:28:34 +00:00
</html>