summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorIndrajith K L2022-03-20 04:21:30 +0530
committerIndrajith K L2022-03-20 04:21:30 +0530
commitf6c356d7a588409abfdc530f2d2c9ca64b59911e (patch)
treeb9e0b025f03d17c56247b51e33381acf0b86ab5e /themes
parent9acb167758c9d66f4575b3f32e60be9fac5caad1 (diff)
downloadexperimentsofindrajith-f6c356d7a588409abfdc530f2d2c9ca64b59911e.tar.gz
experimentsofindrajith-f6c356d7a588409abfdc530f2d2c9ca64b59911e.tar.bz2
experimentsofindrajith-f6c356d7a588409abfdc530f2d2c9ca64b59911e.zip
Adds Tooltip Libs
Diffstat (limited to 'themes')
-rw-r--r--themes/terminal/layouts/partials/logo.html7
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>