added support for templating and tailwindcss

This commit is contained in:
Steven 2023-08-04 18:45:17 -04:00
parent a87ae3dcd3
commit dc3b994247
16 changed files with 1668 additions and 70 deletions

20
templates/root.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>SK TCG Trader</title>
<link rel="stylesheet" href="/assets/main.css">
<script src="/assets/htmx.min.js"></script>
</head>
<body class="bg-slate-700">
<div class="flex flex-col items-center">
<h1 class="text-2xl text-white">SK TCG Trader</h1>
<h2 class="text-xl text-white" id="help-text">Click the button below to get the metrics</h2>
<br />
<p class="font-bold text-white"id="data"></p>
<br />
<button class="bg-purple-500 p-4 rounded-lg text-white font-bold" id="submit" hx-get="/metrics" hx-target='#data' hx-swap="innerHTML">Get Data</button>
</div>
</body>
<style>
</style>
</html>