--- a +++ b/templates/base.html @@ -0,0 +1,68 @@ +<!------------------------------------------------------------------------------------- + * Project : Chest X-Ray Pathology Detection and Localization using Deep Learning + * Author Name : Rammuni Ravidu Suien Silva + * UoW No : 16267097 + * IIT No : 2016134 + * Module : Final Year Project 20/21 + * Supervisor : Mr Pumudu Fernando + + * Prototype : Web Interface - FrontEnd - HTML + * File : Base HTML including all the necessary imports + * University of Westminster, UK || IIT Sri Lanka +--------------------------------------------------------------------------------------> + +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>LAB CXR Demo</title> + <link rel="icon" type="image/png" href="{{ url_for('static', filename='icons/favicon.ico') }}"> + + <!-- 'url_for' was used for increased security--> + <link href="{{ url_for('static', filename='css/bootstrap/bootstrap.min.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/Table_style/font-awesome.min.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/Table_style/main.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/Table_style/main.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/Table_style/animate.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/Table_style/perfect-scrollbar.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/Table_style/select2.min.css') }}" rel="stylesheet"> + <link href="{{ url_for('static', filename='css/Table_style/util.css') }}" rel="stylesheet"> + <script src="{{ url_for('static', filename='js/bootstrap/popper.min.js') }}"></script> + <script src="{{ url_for('static', filename='js/bootstrap/popper.js') }}"></script> + <script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script> + <script src="{{ url_for('static', filename='js/bootstrap/bootstrap.min.js') }}"></script> + <script src="{{ url_for('static', filename='js/bootstrap/bootstrap.bundle.min.js') }}"></script> + <script src="{{ url_for('static', filename='js/bootstrap/select2.min.js') }}"></script> + <link href="{{ url_for('static', filename='css/main.css') }}" rel="stylesheet"> + {{ JSGlue.include() }} +</head> + +<body> +<nav class="navbar navbar-light bg-light"> + <div class="container"> + <a class="navbar-brand" href="#"> + <img src="{{ url_for('static', filename='icons/Logo_192x192.png') }}" width="30" height="30" + class="d-inline-block align-top" alt="logo"> + LAB CXR + </a> + <button type="button" class="btn btn-outline-dark" data-toggle="modal" data-target=".bd-example-modal-lg">Info + </button> + </div> +</nav> +<div class="container"> + <div id="content" style="margin-top:2em"> + <!-- MAIN APP BODY --> + {% block content %}{% endblock %} + </div> +</div> +</body> + +<footer> + <script src="{{ url_for('static', filename='js/dynamicHtml.js') }}" type="text/javascript"></script> + <script src="{{ url_for('static', filename='js/main.js') }}" type="text/javascript"></script> + <script src="{{ url_for('static', filename='js/serverRequests.js') }}" type="text/javascript"></script> +</footer> + +</html> \ No newline at end of file