26 lines
558 B
Plaintext
26 lines
558 B
Plaintext
package templates
|
|
|
|
|
|
templ Layout(comp templ.Component) {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>ME-FIT</title>
|
|
<link rel="icon" href="static/favicon.svg"/>
|
|
<link rel="stylesheet" href="static/css/tailwind.css"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<script defer src="https://umami.me-fit.eu/script.js" data-website-id="3c8efb09-44e4-4372-8a1e-c3bc675cd89a"></script>
|
|
</head>
|
|
<body>
|
|
@header()
|
|
if comp != nil {
|
|
@comp
|
|
}
|
|
@footer()
|
|
</body>
|
|
</html>
|
|
}
|
|
|
|
|