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
698 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' %}
</head>
<body class="skin-1">
<div id="wrapper">
{% include 'nav.html' %}
<div id="page-wrapper" class="gray-bg">
<div class="row border-bottom">
{% include 'nav_bar_header.html' %}
</div>
{{ content }}
{% include 'footer.html' %}
</div>
</div>
{% include 'script.html' %}
</body>
</html>