jumpserver/templates/base.html

33 lines
718 B
HTML
Raw Normal View History

2014-12-22 15:20:47 +00:00
<!DOCTYPE html>
<html>
2014-12-28 13:48:26 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2015-01-02 14:06:35 +00:00
<title>Jumpserver | 开源跳板机系统</title>
2014-12-28 13:48:26 +00:00
2015-01-03 14:42:46 +00:00
<link rel="shortcut icon" href="/static/img/facio.ico" type="image/x-icon">
2015-01-03 15:10:09 +00:00
{% include 'link_css.html' %}
2014-12-28 13:48:26 +00:00
2014-12-22 15:20:47 +00:00
</head>
2014-12-28 13:48:26 +00:00
2014-12-29 13:23:34 +00:00
<body class="skin-1">
2014-12-22 15:20:47 +00:00
2014-12-28 13:48:26 +00:00
<div id="wrapper">
2015-01-03 15:10:09 +00:00
{% include 'nav.html' %}
2014-12-28 13:48:26 +00:00
<div id="page-wrapper" class="gray-bg">
2015-01-03 15:10:09 +00:00
<div class="row border-bottom">
{% include 'nav_bar_header.html' %}
</div>
{% block content %}{% endblock %}
2015-01-03 15:10:09 +00:00
{% include 'footer.html' %}
2014-12-28 13:48:26 +00:00
</div>
2015-01-03 15:10:09 +00:00
</div>
2015-01-03 14:42:46 +00:00
2015-01-03 15:10:09 +00:00
{% include 'script.html' %}
2014-12-22 15:20:47 +00:00
</body>
2014-12-28 13:48:26 +00:00
</html>