mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
32 lines
975 B
Text
32 lines
975 B
Text
package views
|
|
|
|
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/img/favicon.svg"/>
|
|
<link rel="stylesheet" href="/static/css/pico.min.css"/>
|
|
<script src="/static/js/htmx.js" defer></script>
|
|
</head>
|
|
<body hx-boost="true">
|
|
<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">
|
|
{ children... }
|
|
</main>
|
|
<footer class="container-fluid">🏨 RentEase © 2024</footer>
|
|
</body>
|
|
</html>
|
|
}
|