New Domain :3

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2024-11-30 13:30:21 -06:00
parent 7f7437e36b
commit e7fecffa4b

View File

@ -2,14 +2,14 @@
<html>
<head>
<title class=info>Caleb Fontenot's Web Server</title>
<link rel="icon" type="image/x-icon" href="Caleb_face.jpg">
<link rel="icon" href="Caleb_face.jpg" type="image/jpeg" />
<title class=info>Chloe Fontenot's Web Server</title>
<link rel="icon" type="image/x-icon" href="Chloe_face.jpg">
<link rel="icon" href="Chloe_face.jpg" type="image/jpeg" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta content="Caleb Fontenot's Web Server" property="og:title" />
<meta content="Home Page of Caleb Fontenot's Web Server" property="og:description" />
<meta content="https://calebfontenot.com" property="og:url" />
<meta content="https://calebfontenot.com/Caleb_face.jpg" property="og:image" />
<meta content="Chloe Fontenot's Web Server" property="og:title" />
<meta content="Home Page of Chloe Fontenot's Web Server" property="og:description" />
<meta content="https://chloefontenot.org" property="og:url" />
<meta content="https://chloefontenot.org/Chloe_face.jpg" property="og:image" />
<meta content="#FF0000" data-react-helmet="true" name="theme-color" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="root.css" rel="stylesheet">
@ -33,16 +33,16 @@
<div class="navborder">
<a class="button" href="index.html">Home</a>
<a class="button" href="https://discord.gg/nxZUrsBxmp">My Discord Server</a>
<a class="button" href="https://gitea.calebfontenot.com/CCF_100">Gitea</a>
<a class="button" href="https://search.calebfontenot.com">SearXNG Instance</a>
<a class="button" href="https://jellyfin.calebfontenot.com">Jellyfin</a>
<a class="button" href="https://gitea.chloefontenot.org/CCF_100">Gitea</a>
<a class="button" href="https://search.chloefontenot.org">SearXNG Instance</a>
<a class="button" href="https://jellyfin.chloefontenot.org">Jellyfin</a>
<div class="dropdown"/>
<button class="dropbtn button">Minecraft Server Dynamic Maps</button>
<div class="dropdown-content navborder">
<a class="button dropdownButton" href="https://survival.calebfontenot.com">Survival Server</a>
<a class="button dropdownButton" href="https://creative.calebfontenot.com">Creative Server</a>
<a class="button dropdownButton" href="https://modded.calebfontenot.com">Modded Server</a>
<a class="button dropdownButton" href="https://skyfactory.calebfontenot.com">Skyfactory Server</a>
<a class="button dropdownButton" href="https://survival.chloefontenot.org">Survival Server</a>
<a class="button dropdownButton" href="https://creative.chloefontenot.org">Creative Server</a>
<a class="button dropdownButton" href="https://modded.chloefontenot.org">Modded Server</a>
<a class="button dropdownButton" href="https://skyfactory.chloefontenot.org">Skyfactory Server</a>
</div>
</div>
<div class="dropdown">
@ -58,8 +58,8 @@
</div>
</nav>
<h2 class="aboutme">About me<img class="aboutme" src="Caleb.jpg" alt="Caleb" height="5%" width="5%"></h2>
<p class="info">Hi! My name is <mark>Caleb Fontenot.</mark> I am a college graduate of South Louisiana Communitity College. I am also a software developer. <br> I love writing code! 😁</p>
<h2 class="aboutme">About me<img class="aboutme" src="Chloe.jpg" alt="Chloe" height="5%" width="5%"></h2>
<p class="info">Hi! My name is <mark>Chloe Fontenot.</mark> I am a college graduate of South Louisiana Communitity College. I am also a software developer. <br> I love writing code! 😁</p>
<p>This site is hosted on a computer I built myself running Arch Linux and NGINX.</p>
<p>Pick a design!</p>
<div id="selectDesign">
@ -89,7 +89,7 @@
<footer>
<a href=https://gitea.calebfontenot.com/CCF_100/frontpage class="button info">Caleb Fontenot, 2024</a>
<a href=https://gitea.chloefontenot.org/CCF_100/frontpage class="button info">Chloe Fontenot, 2024</a>
</footer>
<script>
function getCookie(cname) {
@ -112,14 +112,14 @@
console.log("Easter egg state is: " + easterEggState);
if (easterEggState) {
document.cookie = "easterEggState=true";
document.body.style.backgroundImage = "url(https://files.calebfontenot.com/blahaj-bl%C3%A5haj.gif)";
document.body.style.backgroundImage = "url(https://files.chloefontenot.org/blahaj-bl%C3%A5haj.gif)";
document.getElementById("toggleEasterEgg").style.display = "inline";
// change name :3
let siteData = document.getElementsByClassName("info");
console.log(siteData);
for (let i = 0; i < siteData.length; ++i) {
console.log(siteData[i]);
siteData[i].innerHTML = siteData[i].innerHTML.replace("Caleb", "Chloe");
//siteData[i].innerHTML = siteData[i].innerHTML.replace("Chloe", "Chloe");
}
} else {
document.cookie = "easterEggState=false";
@ -130,7 +130,7 @@
console.log(siteData);
for (let i = 0; i < siteData.length; ++i) {
console.log(siteData[i]);
siteData[i].innerHTML = siteData[i].innerHTML.replace("Chloe", "Caleb");
//siteData[i].innerHTML = siteData[i].innerHTML.replace("Chloe", "Chloe");
}
}
}