forked from ajinabraham/nodejsscan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
54 lines (47 loc) · 1.84 KB
/
Copy pathbase.html
File metadata and controls
54 lines (47 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block head %}
<link href="{{ url_for('static', filename='css/bootstrap.min_yeti.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='css/base.css') }}" rel="stylesheet">
<title>{% block title %}{% endblock %} - NodeScanV2</title>
<script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script>
{% endblock %}
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/" class="navbar-brand">NodeJSScan</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li>
<a href="/dashboard/">Dashboard</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Made with <font color="red">♥</font> in India</a></li>
</ul>
</div>
</div>
</div>
<div id="content">{% block content %}{% endblock %}</div>
{% block js %}
<!-- Core Scripts - Include with every page -->
<script src = "{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
{% endblock %}
<div id="footer" align="center">
{% block footer %}
Copyright © {{ year }} | NodeJSScan v{{version}} | <a href="https://ajinabraham.com">Ajin Abraham</a>.
{% endblock %}
</div>
</body>
</html>