19 lines
563 B
HTML
19 lines
563 B
HTML
{{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">
|
|
{{template "header" .}}
|
|
{{template "view" .}}
|
|
{{template "footer" .}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|