diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-26 19:36:40 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-26 19:36:40 +0800 |
commit | 5078921f9309ee1d78d528aa683c8eb982c571e1 (patch) | |
tree | 996c21f5084e725bc765f87d2126528e0b499d39 /www/layouts/partials/js.html | |
parent | 0874dd5d5652f7d710d98329ba111fd69e7d8fce (diff) | |
download | crupest-5078921f9309ee1d78d528aa683c8eb982c571e1.tar.gz crupest-5078921f9309ee1d78d528aa683c8eb982c571e1.tar.bz2 crupest-5078921f9309ee1d78d528aa683c8eb982c571e1.zip |
fix(www): css load blink, code block bg, links.
Diffstat (limited to 'www/layouts/partials/js.html')
-rw-r--r-- | www/layouts/partials/js.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/layouts/partials/js.html b/www/layouts/partials/js.html index a4e8048..16dafa4 100644 --- a/www/layouts/partials/js.html +++ b/www/layouts/partials/js.html @@ -4,6 +4,8 @@ <script src="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}"></script> {{ end }} {{ else }} - <script src="{{ (. | js.Build dict) .RelPermalink }}"></script> + {{ with . | js.Build }} + <script src="{{ .RelPermalink }}"></script> + {{ end }} {{ end }} {{ end }} |