27 lines
766 B
HTML
27 lines
766 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include head.html %}
|
|
|
|
</head>
|
|
<body id="page-top">
|
|
|
|
<!-- Navigation -->
|
|
{% include navbar.html %}
|
|
|
|
<!-- Scroll to Top link -->
|
|
<a class="top-link hide" href="" id="js-top">
|
|
<svg class="bi bi-arrow-up-circle-fill" width="4em" height="4em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
|
<path fill-rule="evenodd" d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-10.646.354a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 6.207V11a.5.5 0 0 1-1 0V6.207L5.354 8.354z"/>
|
|
</svg>
|
|
<span class="screen-reader-text">Back to top</span>
|
|
</a>
|
|
|
|
{{content}}
|
|
|
|
{% include footer.html %}
|
|
|
|
{% include scripts.html %}
|
|
</body>
|
|
</html>
|