2025-12-02 08:29:54 +00:00
|
|
|
{{define "head-styles"}}
|
2026-04-08 00:44:16 +01:00
|
|
|
{{if .IsProduction}}
|
|
|
|
|
<!-- CSS - Bundled CSS (built via 'make css-prod') -->
|
2025-12-06 11:59:39 +00:00
|
|
|
<link rel="stylesheet" href="/static/dist/bundle.min.css?v=20251206b">
|
2026-04-08 00:44:16 +01:00
|
|
|
{{else}}
|
|
|
|
|
<!-- CSS - Modular (development) -->
|
|
|
|
|
<link rel="stylesheet" href="/static/css/main.css">
|
|
|
|
|
{{end}}
|
|
|
|
|
{{if .ChatEnabled}}
|
2026-04-08 13:32:31 +01:00
|
|
|
<link rel="stylesheet" href="/static/css/04-interactive/_chat.css?v=20260408">
|
2026-04-08 00:44:16 +01:00
|
|
|
{{end}}
|
2025-12-02 08:29:54 +00:00
|
|
|
<!-- Print styles - loaded separately, only applied when printing -->
|
|
|
|
|
<link rel="stylesheet" href="/static/css/print.css" media="print">
|
|
|
|
|
{{end}}
|