Chris
004e38b3bb
All checks were successful
Build and push / Pulling repo on server (push) Successful in 20s
24 lines
605 B
HTML
24 lines
605 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dogstats</title>
|
|
<link href="/css/output.css" rel="stylesheet">
|
|
<link href="/css/fontawesome.min.css" rel="stylesheet">
|
|
<script src="/js/htmx.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="bg-white">
|
|
|
|
<?php include(ROOT."/templates/menu.html") ?>
|
|
|
|
<div id="main" hx-get="/" hx-trigger="load" hx-indicator="#spinner">
|
|
<i id="spinner" class="fa-solid fa-spinner"></i>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |