-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html
78 lines (63 loc) · 3.5 KB
/
layout.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap 5.3 CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- Custom styles -->
<link href="/static/styles.css" rel="stylesheet">
<title>Hausaufgaben{% block title %}{% endblock %}</title>
</head>
<body>
<!-- Navbar -->
<nav class="bg-light border navbar navbar-expand-md navbar-light">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav me-auto mt-2">
<li class="nav-item">
<a class="nav-link" href="englisch.html">Englisch</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="container py-5 text-center">
<p>Look for information in:</p>
<ul>
<li><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1402378/">NIH: Health benefits of physical activity: the evidence</a></li>
<lr></lr>
<li><a href="https://www.who.int/news-room/fact-sheets/detail/physical-activity">WHO.int: Physical activity</a></li>
<lr></lr>
<li><a href="https://www.nhs.uk/live-well/exercise/exercise-health-benefits/">NHS: Benefits of exercise</a></li>
<lr></lr>
<li><a href="https://www.cdc.gov/physical-activity-basics/benefits/index.html">CDC: Benefits of Physical Activity</a></li>
<lr></lr>
<li><a href="https://medlineplus.gov/benefitsofexercise.html">Medlineplus: Benefits of Exercise</a></li>
</ul>
Additional & Non-Related:
<ul>
<li><a href="https://jsilva.blog/2019/01/11/eat-move-sleep-book-summary/">eat-move-sleep-book-summary</a></li>
</ul>
Something
</main>
<!-- Footer -->
<footer class="mb-5 text-center">
<p>© 2024 Your Project Name</p>
<!-- JavaScript for doctype validation (if required) -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const html = '<!DOCTYPE ' +
document.doctype.name +
(document.doctype.publicId ? ' PUBLIC "' + document.doctype.publicId + '"' : '') +
(!document.doctype.publicId && document.doctype.systemId ? ' SYSTEM' : '') +
(document.doctype.systemId ? ' "' + document.doctype.systemId + '"' : '') +
'>\n' + document.documentElement.outerHTML;
document.querySelector('form[action="https://validator.w3.org/check"] > input[name="fragment"]').value = html;
});
</script>
</footer>
</body>
</html>