diff options
author | Adam T. Carpenter <atc@53hor.net> | 2025-04-12 15:48:11 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2025-04-12 15:48:11 -0400 |
commit | ea79c3b871dbb37ef6c246205d1938fc09ade95f (patch) | |
tree | 8242fe132acca1fdeff0da1bf47441c5f6c364d8 /templates/base.html | |
parent | 576fd3912c6a38ffc156c666874431a78faf9476 (diff) | |
download | carpentertutoring-ea79c3b871dbb37ef6c246205d1938fc09ade95f.tar.xz carpentertutoring-ea79c3b871dbb37ef6c246205d1938fc09ade95f.zip |
Revert "feat: collapsible nav menu"
This reverts commit 576fd3912c6a38ffc156c666874431a78faf9476.
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 31 |
1 files changed, 9 insertions, 22 deletions
diff --git a/templates/base.html b/templates/base.html index 2c6b9aa..a3ae28f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -40,19 +40,15 @@ <body> <nav> - <a id="menu-toggle">More</a> - - <div id="menu"> - <a href="/#"><img alt="logo" src="/assets/logo-simple.png" /></a> - <a href="/#offerings">Services</a> - <a href="/brochure">Brochure</a> - <a href="/posts">Posts</a> - <a href="/#help">Helpful Links</a> - <a href="/policies">Policies</a> - <a href="/about">Team</a> - <a href="/#reviews">Reviews</a> - <a href="/#contact">Contact</a> - </div> + <a href="/#contact">Contact</a> + <a href="/#reviews">Reviews</a> + <a href="/about">Team</a> + <a href="/policies">Policies</a> + <a href="/posts">Posts</a> + <a href="/#help">Helpful Links</a> + <a href="/brochure">Brochure</a> + <a href="/#offerings">Services</a> + <a href="/#"><img alt="logo" src="/assets/logo-simple.png" /></a> </nav> <main> @@ -85,15 +81,6 @@ </a> </p> </footer> - - <script> - const menuToggle = document.querySelector('#menu-toggle'); - const menu = document.querySelector('#menu'); - - menuToggle.onclick = () => { - menu.classList.toggle('menu-open'); - }; - </script> </body> </html> |