Files
smartbar/templates/base.gohtml
2025-08-10 17:36:57 -07:00

15 lines
318 B
Plaintext

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ .Title }}</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body {{ .PageSizeAttr }}>
<div id="page">{{ .Content }}</div>
</body>
</html>