You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jumpserver/templates/base.html

33 lines
836 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jumpserver | 开源跳板机系统</title>
<link rel="shortcut icon" href="/static/img/facio.ico" type="image/x-icon">
{% include 'link_css.html' %}
{% include 'head_script.html' %}
{% block self_head_css_js %} {% endblock %}
</head>
<body>
<div id="wrapper">
{% include 'nav.html' %}
<div id="page-wrapper" class="gray-bg">
<div class="row border-bottom">
{% include 'nav_bar_header.html' %}
</div>
{% block content %}{% endblock %}
{% include 'footer.html' %}
</div>
</div>
</body>
{% include 'foot_script.html' %}
{% block self_footer_js %} {% endblock %}
</html>