|
a |
|
b/templates/base.html |
|
|
1 |
<!------------------------------------------------------------------------------------- |
|
|
2 |
* Project : Chest X-Ray Pathology Detection and Localization using Deep Learning |
|
|
3 |
* Author Name : Rammuni Ravidu Suien Silva |
|
|
4 |
* UoW No : 16267097 |
|
|
5 |
* IIT No : 2016134 |
|
|
6 |
* Module : Final Year Project 20/21 |
|
|
7 |
* Supervisor : Mr Pumudu Fernando |
|
|
8 |
|
|
|
9 |
* Prototype : Web Interface - FrontEnd - HTML |
|
|
10 |
* File : Base HTML including all the necessary imports |
|
|
11 |
* University of Westminster, UK || IIT Sri Lanka |
|
|
12 |
--------------------------------------------------------------------------------------> |
|
|
13 |
|
|
|
14 |
<html lang="en"> |
|
|
15 |
|
|
|
16 |
<head> |
|
|
17 |
<meta charset="UTF-8"> |
|
|
18 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
19 |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
|
20 |
<title>LAB CXR Demo</title> |
|
|
21 |
<link rel="icon" type="image/png" href="{{ url_for('static', filename='icons/favicon.ico') }}"> |
|
|
22 |
|
|
|
23 |
<!-- 'url_for' was used for increased security--> |
|
|
24 |
<link href="{{ url_for('static', filename='css/bootstrap/bootstrap.min.css') }}" rel="stylesheet"> |
|
|
25 |
<link href="{{ url_for('static', filename='css/Table_style/font-awesome.min.css') }}" rel="stylesheet"> |
|
|
26 |
<link href="{{ url_for('static', filename='css/Table_style/main.css') }}" rel="stylesheet"> |
|
|
27 |
<link href="{{ url_for('static', filename='css/Table_style/main.css') }}" rel="stylesheet"> |
|
|
28 |
<link href="{{ url_for('static', filename='css/Table_style/animate.css') }}" rel="stylesheet"> |
|
|
29 |
<link href="{{ url_for('static', filename='css/Table_style/perfect-scrollbar.css') }}" rel="stylesheet"> |
|
|
30 |
<link href="{{ url_for('static', filename='css/Table_style/select2.min.css') }}" rel="stylesheet"> |
|
|
31 |
<link href="{{ url_for('static', filename='css/Table_style/util.css') }}" rel="stylesheet"> |
|
|
32 |
<script src="{{ url_for('static', filename='js/bootstrap/popper.min.js') }}"></script> |
|
|
33 |
<script src="{{ url_for('static', filename='js/bootstrap/popper.js') }}"></script> |
|
|
34 |
<script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script> |
|
|
35 |
<script src="{{ url_for('static', filename='js/bootstrap/bootstrap.min.js') }}"></script> |
|
|
36 |
<script src="{{ url_for('static', filename='js/bootstrap/bootstrap.bundle.min.js') }}"></script> |
|
|
37 |
<script src="{{ url_for('static', filename='js/bootstrap/select2.min.js') }}"></script> |
|
|
38 |
<link href="{{ url_for('static', filename='css/main.css') }}" rel="stylesheet"> |
|
|
39 |
{{ JSGlue.include() }} |
|
|
40 |
</head> |
|
|
41 |
|
|
|
42 |
<body> |
|
|
43 |
<nav class="navbar navbar-light bg-light"> |
|
|
44 |
<div class="container"> |
|
|
45 |
<a class="navbar-brand" href="#"> |
|
|
46 |
<img src="{{ url_for('static', filename='icons/Logo_192x192.png') }}" width="30" height="30" |
|
|
47 |
class="d-inline-block align-top" alt="logo"> |
|
|
48 |
LAB CXR |
|
|
49 |
</a> |
|
|
50 |
<button type="button" class="btn btn-outline-dark" data-toggle="modal" data-target=".bd-example-modal-lg">Info |
|
|
51 |
</button> |
|
|
52 |
</div> |
|
|
53 |
</nav> |
|
|
54 |
<div class="container"> |
|
|
55 |
<div id="content" style="margin-top:2em"> |
|
|
56 |
<!-- MAIN APP BODY --> |
|
|
57 |
{% block content %}{% endblock %} |
|
|
58 |
</div> |
|
|
59 |
</div> |
|
|
60 |
</body> |
|
|
61 |
|
|
|
62 |
<footer> |
|
|
63 |
<script src="{{ url_for('static', filename='js/dynamicHtml.js') }}" type="text/javascript"></script> |
|
|
64 |
<script src="{{ url_for('static', filename='js/main.js') }}" type="text/javascript"></script> |
|
|
65 |
<script src="{{ url_for('static', filename='js/serverRequests.js') }}" type="text/javascript"></script> |
|
|
66 |
</footer> |
|
|
67 |
|
|
|
68 |
</html> |