rentease/internal/views/base.templ
2024-02-04 12:48:43 +01:00

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 &copy 2024</footer>
</body>
</html>
}