Files
smartbar/templates/base.gohtml

16 lines
385 B
Plaintext
Raw Permalink Normal View History

2025-08-10 17:17:01 -07:00
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ .Title }}</title>
2025-08-10 18:02:12 -07:00
<link rel="stylesheet" href="assets/css/base.css" />
<link rel="stylesheet" href="assets/css/smartbar.css" />
2025-08-10 17:17:01 -07:00
</head>
<body {{ .PageSizeAttr }}>
<div id="page">{{ .Content }}</div>
</body>
</html>