bees-knees/templates/index.html

61 lines
1.8 KiB
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>
<div class="fab-holder">
<div class="main-btn fab-icon-holder">
<div class="icon">
<i class="fas fa-info"></i>
</div>
</div>
<ul class="fab-options">
<li>
<span class="fab-label">Show Originals</span>
<div class="option-btn fab-icon-holder">
<div class="icon">
<i class="fas fa-file-alt"></i>
</div>
</div>
</li>
<li>
<span class="fab-label">About</span>
<div class="option-btn fab-icon-holder">
<div class="icon">
<i class="fas fa-question"></i>
</div>
</div>
</li>
<li>
<span class="fab-label">Feedback</span>
<div class="option-btn fab-icon-holder">
<div class="icon">
<i class="fas fa-comment-alt"></i>
</div>
</div>
</li>
<!-- <li> -->
<!-- <span class="fab-label">Something else</span> -->
<!-- <div class="option-btn fab-icon-holder"> -->
<!-- <div class="icon"> -->
<!-- <i class="fas fa-question"></i> -->
<!-- </div> -->
<!-- </div> -->
<!-- </li> -->
</ul>
</div>
</body>
</html>