salt/states/roles/maintain/saltpad/templates/base.html
2017-08-07 13:25:01 -05:00

49 lines
2.1 KiB
HTML
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Dashboard - SaltPad</title>
<!-- Bootstrap core CSS -->
<link href="{{ url_for('static', filename='css/bootstrap.css') }}" rel="stylesheet">
<!-- Add custom CSS here -->
<link href="{{ url_for('static', filename='css/sb-admin.css') }}" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='font-awesome/css/font-awesome.min.css') }} ">
<link href="{{ url_for('static', filename='css/saltpad.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/jsontree.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/dataTables.bootstrap.css') }}" rel="stylesheet">
<!-- Page Specific CSS -->
<!-- <link rel="stylesheet" href="http://cdn.oesmith.co.uk/morris-0.4.3.min.css"> -->
{% block head %}
{% endblock %}
</head>
<body>
{% block body %}
{% endblock %}
<!-- JavaScript -->
<script src="{{ url_for('static', filename='js/jquery-1.10.2.js') }}"></script>
<script src="{{ url_for('static', filename='js/bootstrap.js') }}"></script>
<script src="{{ url_for('static', filename='js/jsontree.js') }}"></script>
<!-- Page Specific Plugins -->
<!-- <script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="http://cdn.oesmith.co.uk/morris-0.4.3.min.js"></script> -->
<!-- <script src="{{ url_for('static', filename='js/morris/chart-data-morris.js') }}"></script> -->
<!-- <script src="{{ url_for('static', filename='js/tablesorter/jquery.tablesorter.js') }}"></script>
<script src="{{ url_for('static', filename='js/tablesorter/tables.js') }}"></script> -->
<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js') }}"></script>
<script src="{{ url_for('static', filename='js/dataTables.bootstrap.js') }}"></script>
{% block scripts %}
{% endblock %}
</body>
</html>