limepot-xyz/index.html

117 lines
4.3 KiB
HTML
Raw Normal View History

2022-10-16 23:17:19 -06:00
<!DOCTYPE html>
<html>
2022-10-29 15:46:22 -06:00
<head>
<!--
2022-12-20 17:02:46 -07:00
<meta http-equiv="Refresh" content="0; url='https://limepot.xyz/BETA/'"/>
-->
2022-10-29 15:46:22 -06:00
<meta charset = "utf-8" />
<title>
2022-12-20 16:24:22 -07:00
Home - Alpha
2022-10-29 15:46:22 -06:00
</title>
<!-- add icon link -->
<link rel = "icon" href = "assets/obo-icon.png"
type = "image/x-icon">
2022-12-19 05:37:53 -07:00
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
2022-12-19 15:27:23 -07:00
<div class="head"></div>
2022-12-19 05:37:53 -07:00
<div class="navigation">
2022-12-19 18:37:00 -07:00
<div class="mTitle"></div>
2022-12-19 05:37:53 -07:00
<div class="menuToggle"></div>
<ul>
2022-12-19 14:18:58 -07:00
<li class="list active" style="--clr:rgb(0, 196, 157);">
2022-12-19 16:21:17 -07:00
<a href="#">
2022-12-19 14:18:58 -07:00
<span class="icon"><ion-icon name="planet"></ion-icon></span>
2022-12-19 05:37:53 -07:00
<span class="text">Home</span>
</a>
</li>
2022-12-19 14:18:58 -07:00
<li class="list" style="--clr:rgb(0, 196, 157);">
2022-12-19 15:03:46 -07:00
<a href="about.html">
2022-12-20 16:30:54 -07:00
<span class="icon"><ion-icon name="transgender-outline"></ion-icon></span>
2022-12-19 05:37:53 -07:00
<span class="text">About</span>
</a>
</li>
2022-12-19 14:18:58 -07:00
<li class="list" style="--clr:rgb(0, 196, 157);">
2022-12-19 15:03:46 -07:00
<a href="projects.html">
2022-12-19 14:18:58 -07:00
<span class="icon"><ion-icon name="code-slash"></ion-icon></span>
<span class="text">Projects</span>
</a>
</li>
<li class="list" style="--clr:rgb(0, 196, 157);">
2022-12-19 15:03:46 -07:00
<a href="photography.html">
2022-12-19 14:18:58 -07:00
<span class="icon"><ion-icon name="camera"></ion-icon></span>
<span class="text">Photography</span>
</a>
</li>
<li class="list" style="--clr:rgb(0, 196, 157);">
2022-12-19 15:03:46 -07:00
<a href="videography.html">
2022-12-19 14:18:58 -07:00
<span class="icon"><ion-icon name="videocam"></ion-icon></span>
2023-01-27 17:04:11 -07:00
<span class="text">Youtube</span>
2022-12-19 14:18:58 -07:00
</a>
</li>
2022-12-19 16:21:17 -07:00
<li class="list" style="--clr:rgb(0, 196, 157);">
<a href="discord.html">
<span class="icon"><ion-icon name="logo-discord"></ion-icon></span>
2023-01-27 17:04:11 -07:00
<span class="text">Discord</span>
2022-12-19 16:21:17 -07:00
</a>
</li>
2022-12-19 14:49:25 -07:00
<li class="list" style="--clr:rgb(0, 196, 157);">
2022-12-19 15:03:46 -07:00
<a href="old/index.html">
2022-12-19 14:49:25 -07:00
<span class="icon"><ion-icon name="archive"></ion-icon></span>
<span class="text">Old Site</span>
</a>
</li>
<li class="list" style="--clr:rgb(0, 196, 157);">
<a href="BETA/index.html">
2022-12-20 16:30:54 -07:00
<span class="icon"><ion-icon name="code-working-outline"></ion-icon></span>
<span class="text">Beta Site</span>
</a>
</li>
2022-12-19 05:37:53 -07:00
</ul>
</div>
2022-12-19 15:27:23 -07:00
<div class="content">
2022-12-23 18:33:18 -07:00
<button id="toggle-dark-light-mode">Toggle Dark/Light Mode</button>
2022-12-19 20:12:48 -07:00
<br><br><br>
2022-12-19 20:36:54 -07:00
<a href="#">0 Days since last incident.</a>
2022-12-19 20:12:48 -07:00
<br><br>
2022-12-19 15:27:23 -07:00
<p>"Forever - is composed of Nows</p>
<p>`Tis not a different time -</p>
<p>Except for Infiniteness -</p>
<p>And Latitude of Home -</p>
<br>
<p>From this - experienced Here -</p>
<p>Remove the Dates - to These -</p>
<p>Let Months dissolve in further Months -</p>
<p>And Years - exhale in Years ..."</p>
<p>- Emily Dickinson</p>
2022-12-19 21:42:02 -07:00
<br><br><br>
</div>
2022-12-23 18:33:18 -07:00
<script>
const toggleButton = document.getElementById('toggle-dark-light-mode');
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('darkmode');
document.body.classList.toggle('lightmode');
});
</script>
2022-12-19 05:37:53 -07:00
<script>
const menuToggle = document.querySelector('.menuToggle');
const navigation = document.querySelector('.navigation');
menuToggle.onclick = function(){
navigation.classList.toggle('open')
}
2022-12-19 14:18:58 -07:00
const list = document.querySelectorALl('.list');
function activeLink(){
list.forEach((item) =>
item.classList.remove('active'));
this.classList.add('active');
}
list.forEach((item) =>
item.addEventListener('click',activeLink))
2022-12-19 05:37:53 -07:00
</script>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>