From a4eaf8cf69f66c0da60b02cd3f8cfeeebaa7b95c Mon Sep 17 00:00:00 2001
From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com>
Date: Sun, 15 Dec 2024 14:38:07 -0600
Subject: [PATCH] build: Remove PostCSS filtering
---
layouts/_default/baseof.html | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 5359ed9..52c0282 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -9,7 +9,9 @@
{{ end }}
{{ .Title }} - {{ .Site.Title }}
{{ $twbssass := resources.Get "styles/millironx.css" }}
- {{ $twbssass = $twbssass | resources.PostCSS | minify | resources.PostProcess }}
+ {{ $twbssass =
+ $twbssass | minify
+ }}
@@ -25,11 +27,7 @@
{{ partial "sidebar" . }}
-
- {{ block "main" . }}
- {{ .Content }}
- {{ end }}
-
+ {{ block "main" . }}{{ .Content }}{{ end }}
- {{ with .Params.validation }}
- {{- partial "form-validation.html" -}}
- {{ end }}
+ {{ with .Params.validation }}{{- partial "form-validation.html" -}}{{ end }}