rentease/internal/view/layout/base.templ
2024-05-25 19:03:33 +02:00

32 lines
1 KiB
Text

package layout
templ BaseLayout() {
<!DOCTYPE html>
<html lang="en">
<head>
<title>RentEase | Your Property Management System</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="AI assistant to help you improve your management"/>
<link rel="icon" href="/static/icons/favicon-main.png"/>
<link rel="stylesheet" href="/static/css/pico.min.css"/>
<script src="/static/js/htmx.js" defer></script>
</head>
<body hx-boost="true" style="display: flex; flex-direction: column; height: 100%;">
<nav class="container-fluid">
<ul>
<li><a href="/"><b>🏨 RentEase </b> </a></li>
</ul>
<ul>
<li><a href="/bookings">Bookings</a></li>
<li><a href="/reports">Reports</a></li>
<li><a href="/bookings/new" role="button">New Booking</a></li>
</ul>
</nav>
<main class="container" style="flex: 1 0 auto;">
{ children... }
</main>
<footer class="container-fluid">🏨 RentEase &copy 2024</footer>
</body>
</html>
}