diff options
author | Oscar Najera <hi@oscarnajera.com> | 2025-01-05 16:10:52 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2025-01-05 16:28:42 +0100 |
commit | f9e5452a0046e6e47425f0c58d438d0f573fece9 (patch) | |
tree | 3ab76cba6c230e69b180c08a71a525767eac42d4 /layouts/partials/head.html | |
parent | 00955349164d98747ccc0fdc01b74b51868991b6 (diff) | |
download | hugo-minimalist-theme-f9e5452a0046e6e47425f0c58d438d0f573fece9.tar.gz hugo-minimalist-theme-f9e5452a0046e6e47425f0c58d438d0f573fece9.tar.bz2 hugo-minimalist-theme-f9e5452a0046e6e47425f0c58d438d0f573fece9.zip |
use async to load js files
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index dfc2f2b..be48acf 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -31,5 +31,8 @@ {{ end -}} - <script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script> + <script + async + src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js" + ></script> </head> |