| <html lang="en"> | |
| {% load static %} | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" | |
| integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> --> | |
| <link rel="stylesheet" href="/static/bootstrap/bootstrap.min.css"> | |
| <!-- <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> --> | |
| <link rel="stylesheet" href="/static/css/jquery-ui.css"> | |
| <link rel="stylesheet" href="{% static 'css/styles.css'%}"> | |
| <title>Deepfake Detection</title> | |
| </head> | |
| <body> | |
| {%include 'nav-bar.html'%} | |
| {%block content%} | |
| {%endblock%} | |
| <!-- <script src="https://code.jquery.com/jquery-3.4.1.min.js" | |
| integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> --> | |
| <script src="/static/js/jquery-3.4.1.min.js" ></script> | |
| <!-- <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" | |
| integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" | |
| crossorigin="anonymous"></script> --> | |
| <script src="/static/js/popper.min.js"></script> | |
| <!-- <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" | |
| integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script> --> | |
| <script src="/static/js/jquery-ui.min.js"></script> | |
| {%block js_cripts%} | |
| {%endblock%} | |
| {%include 'footer.html'%} | |
| </body> | |
| </html> |