coller/src/server/templates/head.html
Julien Riou ff92e30232
All checks were successful
/ pre-commit (push) Successful in 1m7s
feat: Option to serve Bootstrap from the filesystem
Signed-off-by: Julien Riou <julien@riou.xyz>
2025-09-19 07:14:33 +02:00

9 lines
No EOL
364 B
HTML

{{define "head"}}
<head>
<title>{{.Title}}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{if ne .BootstrapDirectory ``}}/static/bootstrap/css/bootstrap.min.css{{else}}https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css{{end}}" rel="stylesheet">
</head>
{{end}}