diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 88057a3..09e3d8d 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -51,4 +51,5 @@
- [John Schroeder](https://blog.schroedernet.software)
- [Tobias Lindberg](https://tobiaslindberg.com)
- [KK](https://github.com/bebound)
+- [Eli W. Hunter](https://github.com/elihunter173)
- [Víctor López](https://github.com/viticlick)
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index a1fb252..3824e2e 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -66,7 +66,19 @@
{{ range .Site.Params.custom_js }}
{{ end }}
-
+
+ {{ range .Site.Params.custom_scss }}
+ {{/* We don't change the targetPath to because it's transparent to users */}}
+ {{ if $.Site.IsServer }}
+ {{ $cssOpts := (dict "enableSourceMap" true ) }}
+ {{ $styles := resources.Get . | toCSS $cssOpts }}
+
+ {{ else }}
+ {{ $styles := resources.Get . | toCSS | minify | fingerprint }}
+
+ {{ end }}
+ {{ end }}
+