Sha256: 4a5fbeb59e5ef405b0abdef5a0d0806c3b001713ef03fc3b75cc9be9c76a6cce
Contents?: true
Size: 1.41 KB
Versions: 4
Compression:
Stored size: 1.41 KB
Contents
<!doctype html> <html lang="{{site.active_lang}}"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link href="{{ '/assets/css/dist-style.css' | relative_url }}" rel="stylesheet" /> <link href="{{ '/assets/css/fonts.css' | relative_url }}" rel="stylesheet" /> {% if site.typewriter_effect %} <script src="https://unpkg.com/typeit@8.8.4/dist/index.umd.js"></script> {% endif %} {% seo %} {% include custom_head.html %} </head> <body class="bg-white text-gray-700 dark:bg-gray-700 dark:text-slate-100"> {% if site.typewriter_effect %} <script> document.addEventListener("DOMContentLoaded", function () { new TypeIt("h1", {}).go(); }); </script> {% endif %} {% include navbar.html %} {{ content }} {% include footer.html %} <script> document.querySelectorAll("a").forEach(function (link) { link.addEventListener("click", function (event) { event.preventDefault(); // Prevent the default link action temporarily link.classList.add("gentle-clicked"); setTimeout(function () { link.classList.remove("gentle-clicked"); window.location.href = link.href; // Navigate to the link after the animation }, 300); // Duration of the gentle bounce animation }); }); </script> </body> </html>
Version data entries
4 entries across 4 versions & 1 rubygems