44 lines
1 KiB
Text
44 lines
1 KiB
Text
package templates
|
|
|
|
templ Layout(title string, header, main templ.Component) {
|
|
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>{ title } — Zamówienia ciast</title>
|
|
<link rel="stylesheet" href="/static/fonts/inter.css"/>
|
|
<link rel="stylesheet" href="/static/fonts/material.css"/>
|
|
<link rel="stylesheet" href="/static/style.css"/>
|
|
<script src="/static/htmx2.04.js" defer></script>
|
|
<script src="/static/order.js"></script>
|
|
</head>
|
|
<body>
|
|
<aside>
|
|
@Nav()
|
|
</aside>
|
|
<main id="main">
|
|
<header class="topnav">
|
|
<h1>{ title }</h1>
|
|
@header
|
|
</header>
|
|
<div class="main-content">
|
|
@main
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
}
|
|
|
|
templ MainContent(title string, header, main templ.Component) {
|
|
<main id="main">
|
|
<title hx-swap-oob="true">{ title } — Zamówienia ciast</title>
|
|
<header class="topnav">
|
|
<h1>{ title }</h1>
|
|
@header
|
|
</header>
|
|
<div class="main-content">
|
|
@main
|
|
</div>
|
|
</main>
|
|
}
|