This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/web/templates/mainpage.html

27 lines
754 B
HTML
Raw Normal View History

2023-10-18 16:12:47 +02:00
<!DOCTYPE html>
<html lang="en">
2023-10-18 22:42:01 +02:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dogstats</title>
2023-10-23 13:05:16 +02:00
<link href="/css/animate.min.css" rel="stylesheet">
2023-10-22 01:46:22 +02:00
<link href="/css/fontawesome.min.css" rel="stylesheet">
2023-10-23 13:05:16 +02:00
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/style.css" rel="stylesheet">
2023-10-22 09:57:29 +02:00
2023-10-18 22:42:01 +02:00
</head>
2023-10-21 20:47:11 +02:00
<body>
2023-10-23 13:05:16 +02:00
<?php include(ROOT."/templates/menu.html") ?>
2023-10-18 22:42:01 +02:00
2023-10-23 13:05:16 +02:00
<main id="main" class="container" hx-get="/" hx-trigger="load" hx-indicator="#spinner">
<i id="spinner" class="fa-solid fa-spinner"></i>
</main>
2023-10-22 09:57:29 +02:00
<script src="/js/htmx.min.js"></script>
2023-10-23 13:05:16 +02:00
<script src="/js/bootstrap.bundle.min.js"></script>
2023-10-21 20:47:11 +02:00
</body>
2023-10-18 22:42:01 +02:00
</html>