diff options
author | Indrajith K L | 2022-03-20 04:21:30 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-20 04:21:30 +0530 |
commit | f6c356d7a588409abfdc530f2d2c9ca64b59911e (patch) | |
tree | b9e0b025f03d17c56247b51e33381acf0b86ab5e /themes/terminal | |
parent | 9acb167758c9d66f4575b3f32e60be9fac5caad1 (diff) | |
download | experimentsofindrajith-f6c356d7a588409abfdc530f2d2c9ca64b59911e.tar.gz experimentsofindrajith-f6c356d7a588409abfdc530f2d2c9ca64b59911e.tar.bz2 experimentsofindrajith-f6c356d7a588409abfdc530f2d2c9ca64b59911e.zip |
Adds Tooltip Libs
Diffstat (limited to 'themes/terminal')
-rw-r--r-- | themes/terminal/layouts/partials/logo.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/themes/terminal/layouts/partials/logo.html b/themes/terminal/layouts/partials/logo.html index 8a1bf1f..41c05a2 100644 --- a/themes/terminal/layouts/partials/logo.html +++ b/themes/terminal/layouts/partials/logo.html @@ -3,3 +3,10 @@ {{ 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> + tippy('.logo', { + content: {{$.Site.Title}}, + }); +</script> |