remove footer because it does not allow the selection of the botom sections

This commit is contained in:
AngelJumbo
2024-06-08 08:20:51 -05:00
parent cbe2e52507
commit 4899b3d32d
3 changed files with 24 additions and 33 deletions
+13 -17
View File
@@ -49,7 +49,19 @@ echo "<!DOCTYPE html>
</head>
<body>
<div class='float-btns'>
<a href='https://github.com/AngelJumbo/gruvbox-wallpapers' target='_blank' class='btn float-btn' title='Source code' >
<span>
<i class='fa-brands fa-github'></i>
</span>
</a>
<button onclick='switchTheme()' class='btn float-btn' title='Switch theme'>
<span>
<i id='light-icon' class='fa-solid fa-sun'></i>
<i id='dark-icon' class='fa-solid fa-moon'></i>
</span>
</button>
</div>
<main>
<h1>Gruvbox Wallpapers</h1>" > ./index.html
@@ -128,22 +140,6 @@ echo "
}
</script>" >> ./index.html
echo "
<footer>
<div class='float-btns'>
<a href='https://github.com/AngelJumbo/gruvbox-wallpapers' target='_blank' class='btn float-btn' title='Source code' >
<span>
<i class='fa-brands fa-github'></i>
</span>
</a>
<button onclick='switchTheme()' class='btn float-btn' title='Switch theme'>
<span>
<i id='light-icon' class='fa-solid fa-sun'></i>
<i id='dark-icon' class='fa-solid fa-moon'></i>
</span>
</button>
</div>
</footer>" >> ./index.html
echo "
</body>