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

46 lines
1.8 KiB
HTML
Raw Permalink Normal View History

2023-10-18 16:12:47 +02:00
<!DOCTYPE html>
2023-10-31 21:29:17 +01:00
<html lang="en" class="h-100" data-bs-theme="<?= ($_SESSION['user'] && $_SESSION['user']->theme)?$_SESSION['user']->theme:'autoy' ?>">
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">
2023-10-23 17:42:12 +02:00
<link href="/css/dogstats.css" rel="stylesheet">
2023-10-31 23:16:41 +01:00
<script src="/js/echarts.min.js"></script>
2023-10-18 22:42:01 +02:00
</head>
2023-10-26 11:15:39 +02:00
<body class="d-flex flex-column h-100">
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:59:26 +02:00
<main id="main" class="container" hx-get="/" hx-trigger="load">
2023-10-23 13:05:16 +02:00
</main>
2023-10-22 09:57:29 +02:00
2023-10-23 17:42:12 +02:00
<footer class="footer mt-auto py-3 bg-body-tertiary ">
2023-10-26 16:41:33 +02:00
<!-- <ul class="nav justify-content-center border-bottom pb-3 mb-3">
2023-10-23 17:42:12 +02:00
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Home</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Features</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">Pricing</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">FAQs</a></li>
<li class="nav-item"><a href="#" class="nav-link px-2 text-muted">About</a></li>
2023-10-26 16:41:33 +02:00
</ul> -->
2023-10-26 11:15:39 +02:00
<p class="text-center text-muted">
© 2023 Crispi
2023-10-26 11:19:13 +02:00
<br/>
<small hx-get="/version.txt" hx-trigger="load"></small>
2023-10-26 11:15:39 +02:00
</p>
2023-10-23 17:42:12 +02:00
</footer>
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>
<script src="/js/dropzone.min.js"></script>
2023-10-31 21:29:17 +01:00
<?php if((!$_SESSION['user'] || !$_SESSION['user']->theme)): ?><script src="/js/color-modes.js"></script><?php endif; ?>
2023-10-21 20:47:11 +02:00
</body>
2023-10-18 22:42:01 +02:00
</html>