1
0
Fork 0
owenryan.us/source/_layouts/base.html

13 lines
304 B
HTML
Raw Normal View History

2023-05-16 03:59:18 +00:00
---
# Base HTML layout with the bare essentials
2024-04-17 20:58:49 +00:00
layout: compress
2023-05-16 03:59:18 +00:00
---
<!DOCTYPE html>
<html class="h-100" lang="en" data-bs-theme="dark">
2024-04-17 20:58:49 +00:00
{%- include head.html -%}
2023-05-16 03:59:18 +00:00
<body class="d-flex flex-column h-100">
2024-04-17 20:58:49 +00:00
{{- content -}}
2023-05-16 03:59:18 +00:00
<script src="/assets/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>