correct cache busting technique

Amolith created

Change summary

themes/secluded/layouts/partials/head.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

themes/secluded/layouts/partials/head.html 🔗

@@ -37,8 +37,8 @@
     {{ $options := (dict "outputStyle" "compressed" "enableSourceMap" true) }}
     {{ $scss := resources.Get "scss/imports.scss" }}
     {{ $style := $scss | resources.ToCSS $options }}
-    <link rel="preload" href="{{ $style.RelPermalink }}?{{ .Now.Unix }}" as="style">
-    <link rel="stylesheet" href="{{ $style.RelPermalink }}?{{ .Now.Unix }}">
+    <link rel="preload" href="{{ $style.RelPermalink }}?{{ now.Unix }}" as="style">
+    <link rel="stylesheet" href="{{ $style.RelPermalink }}?{{ now.Unix }}">
 
     {{ partialCached "favicons.html" . }}
 </head>