calathea/templates/base.html

29 lines
881 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<script src="/static/htmx_2.0.4.min.js" integrity="sha384-HGfztofotfshcF7+8n44JQL2oJmowVChPTg48S+jvZoztPfvwD79OC/LTtG6dMp+"></script>
<link rel="stylesheet" href="/static/pico.classless.green.min.css" />
<style type="text/css">
a:hover {
cursor:pointer;
}
</style>
</head>
<body>
<main>
<nav>
<ul>
<li><strong>Calathea</strong></li>
</ul>
<ul>
<li><a hx-get="/" hx-target="#content" hx-push-url="true">Home</a></li>
<li><a hx-get="/plants" hx-target="#content" hx-push-url="true">Plants</a></li>
</ul>
</nav>
<article id="content">
{{ view | safe }}
</article>
</main>
</body>
</html>