mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-06 02:36:49 +00:00
27 lines
771 B
Text
27 lines
771 B
Text
package views
|
|
|
|
templ BaseLayout() {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Dwight | Assistant to the Manager</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"/>
|
|
<link rel="stylesheet" href="/static/css/style.css"/>
|
|
</head>
|
|
<body>
|
|
<nav class="container-fluid">
|
|
<ul>
|
|
<li><a href="/"><b>🧠 Dwight</b> </a></li>
|
|
</ul>
|
|
</nav>
|
|
<main class="container">
|
|
{ children... }
|
|
</main>
|
|
<footer class="container-fluid">🧠 Dwight © 2024</footer>
|
|
</body>
|
|
</html>
|
|
}
|