bees-knees/templates/index.html

21 lines
574 B
HTML

<!doctype html>
<html>
<head>
<title>The Pollen Prophet</title>
<script src="https://unpkg.com/htmx.org@1.6.1"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"></script>
<link href="static/style.css" rel="stylesheet" />
</head>
<body>
<h1>The Pollen Prophet</h1>
<h2>Making funny since 2025 what ought not bee.</h2>
<div
hx-get="/improvements"
hx-target="#content"
hx-trigger="load"
id="content"
></div>
{% include "floating_button.html" %}
</body>
</html>