revert css to use generated bundle + raw html warnings
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-01-07 09:35:29 +01:00
parent f2b94b9c63
commit 9799e04c01
3 changed files with 34 additions and 31 deletions
+8 -2
View File
@@ -16,8 +16,14 @@
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<link rel="stylesheet" href="{{ "css/styles.css" | absURL }}">
<link rel="stylesheet" href="{{ "css/syntax.css" | absURL }}">
{{ $css := resources.Match "css/*.css" }}
{{ with $css }}
{{ $bundle := . | resources.Concat "css/bundle.min.css" | minify | fingerprint }}
<link rel="stylesheet"
href="{{ $bundle.Permalink }}"
integrity="{{ $bundle.Data.Integrity }}">
{{ end }}
{{ block "head" . }}{{ end }}
</head>