|
a |
|
b/src/templates/base.html |
|
|
1 |
<html lang="en"> |
|
|
2 |
|
|
|
3 |
<head> |
|
|
4 |
<meta charset="UTF-8"> |
|
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
6 |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
|
7 |
<title>AI Demo</title> |
|
|
8 |
<link href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"> |
|
|
9 |
<script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js"></script> |
|
|
10 |
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script> |
|
|
11 |
<script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> |
|
|
12 |
<link href="{{ url_for('static', filename='css/main.css') }}" rel="stylesheet"> |
|
|
13 |
</head> |
|
|
14 |
|
|
|
15 |
<body> |
|
|
16 |
<nav class="navbar navbar-dark bg-dark"> |
|
|
17 |
<div class="container"> |
|
|
18 |
<a class="navbar-brand" href="#">ECG Cardiology Classifier by CNN supervised learning</a> |
|
|
19 |
<button class="btn btn-outline-secondary my-2 my-sm-0" type="submit">Help</button> |
|
|
20 |
</div> |
|
|
21 |
</nav> |
|
|
22 |
<div class="container"> |
|
|
23 |
<div id="content" style="margin-top:2em">{% block content %}{% endblock %}</div> |
|
|
24 |
</div> |
|
|
25 |
</body> |
|
|
26 |
|
|
|
27 |
<footer> |
|
|
28 |
<script src="{{ url_for('static', filename='js/main.js') }}" type="text/javascript"></script> |
|
|
29 |
</footer> |
|
|
30 |
|
|
|
31 |
</html> |