19 lines
687 B
HTML
19 lines
687 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Celebrating Christmas!</title>
|
|
<link type="text/css" rel="stylesheet" href="static/css/site.css" />
|
|
<script src=" https://cdn.jsdelivr.net/npm/htmx.org/dist/htmx.min.js "></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
<script src="https://unpkg.com/alpinejs" defer></script>
|
|
<script src="static/js/site.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div class="main">
|
|
<div class="body-content" id="body-content" hx-trigger="load" hx-get="/pages/home.html" hx-swap="innerHTML">
|
|
<p class="loading">Loading...</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |