49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Got something to look up? I got you!</title>
|
||
|
|
||
|
<link
|
||
|
rel="stylesheet"
|
||
|
type="text/css"
|
||
|
href="https://use.fontawesome.com/releases/v6.5.1/css/all.css"
|
||
|
/>
|
||
|
<link
|
||
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css"
|
||
|
rel="stylesheet"
|
||
|
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
|
||
|
crossorigin="anonymous"
|
||
|
/>
|
||
|
<link
|
||
|
rel="stylesheet"
|
||
|
type="text/css"
|
||
|
href="https://cdn.datatables.net/1.10.25/css/dataTables.bootstrap5.css"
|
||
|
/>
|
||
|
<link
|
||
|
rel="stylesheet"
|
||
|
type="text/css"
|
||
|
href="{{ url_for('static', filename='styles/style.css')}}"
|
||
|
/>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block content %} {% endblock %}
|
||
|
<script
|
||
|
type="text/javascript"
|
||
|
charset="utf8"
|
||
|
src="https://code.jquery.com/jquery-3.6.0.min.js"
|
||
|
></script>
|
||
|
<script
|
||
|
type="text/javascript"
|
||
|
charset="utf8"
|
||
|
src="https://cdn.datatables.net/1.10.25/js/jquery.dataTables.js"
|
||
|
></script>
|
||
|
<script
|
||
|
type="text/javascript"
|
||
|
charset="utf8"
|
||
|
src="https://cdn.datatables.net/1.10.25/js/dataTables.bootstrap5.js"
|
||
|
></script>
|
||
|
|
||
|
{% block scripts %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|