diff options
author | Indrajith K L | 2022-03-20 04:31:40 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-20 04:31:40 +0530 |
commit | 420179a84e429aef06461ceb7a22d07772223146 (patch) | |
tree | 38d6e1f57cb6945b210a683c9448c5261c075ed6 /themes/terminal/layouts/partials | |
parent | f6c356d7a588409abfdc530f2d2c9ca64b59911e (diff) | |
download | experimentsofindrajith-420179a84e429aef06461ceb7a22d07772223146.tar.gz experimentsofindrajith-420179a84e429aef06461ceb7a22d07772223146.tar.bz2 experimentsofindrajith-420179a84e429aef06461ceb7a22d07772223146.zip |
Fixes : JS Library Absolute path
Diffstat (limited to 'themes/terminal/layouts/partials')
-rw-r--r-- | themes/terminal/layouts/partials/logo.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/terminal/layouts/partials/logo.html b/themes/terminal/layouts/partials/logo.html index 41c05a2..ad87fa1 100644 --- a/themes/terminal/layouts/partials/logo.html +++ b/themes/terminal/layouts/partials/logo.html @@ -3,8 +3,8 @@ {{ with $.Site.Params.Logo.logoText }}{{ . }}{{ else }}Terminal{{ end }} </div> </a> -<script src="js/popper.min.js"></script> -<script src="js/tippy-bundle.umd.min.js"></script> +<script src="{{ "js/popper.min.js" | absURL }}"></script> +<script src="{{ "js/tippy-bundle.umd.min.js" | absURL }}"></script> <script> tippy('.logo', { content: {{$.Site.Title}}, |