jumpserver/templates/base.html

34 lines
742 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' %}
2015-01-14 08:39:57 +00:00
{% include 'script.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
2015-01-22 14:12:41 +00:00
<body>
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-14 08:39:57 +00:00
<!--{% include 'script.html' %}-->
2014-12-22 15:20:47 +00:00
</body>
2014-12-28 13:48:26 +00:00
</html>