GoStart/web/views/templates/#layout.html

19 lines
563 B
HTML
Raw Normal View History

2024-05-17 19:53:56 +00:00
{{define "layout"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GO Web App - {{.Title}}</title>
<link rel="stylesheet" href="/static/output.css" />
<link rel="icon" href="/static/img/favicon.ico" type="image/x-icon" />
<script src="/static/htmx.min.js"></script>
</head>
<body class="text-center text-blue-300 bg-gray-800">
2024-05-27 00:38:49 +00:00
{{template "header" .}}
2024-05-17 19:53:56 +00:00
{{template "view" .}}
2024-05-27 01:42:53 +00:00
{{template "footer" .}}
2024-05-17 19:53:56 +00:00
</body>
</html>
{{end}}