2022-05-02 18:16:03 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2022-08-03 18:58:11 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/reset.css">
|
2022-05-02 20:23:50 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/sig.css">
|
2022-05-04 14:01:54 +00:00
|
|
|
<meta charset="UTF-8">
|
2022-05-02 21:03:16 -05:00
|
|
|
<script type="text/javascript">
|
|
|
|
function loadCodeBackground() {
|
2022-05-04 18:46:53 +00:00
|
|
|
fetch("/codeBackground").then((data)=>data.text())
|
2022-05-02 21:03:16 -05:00
|
|
|
.then((data)=>{
|
|
|
|
document.getElementById("codeForeground").innerText=data
|
|
|
|
document.getElementById("codeBackground").innerText=data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
loadCodeBackground();
|
|
|
|
</script>
|
2022-05-02 18:16:03 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-06-03 19:35:03 +00:00
|
|
|
<div class="contentBody">
|
2022-05-02 18:16:03 +00:00
|
|
|
SigPlace
|
2022-05-04 15:44:37 +00:00
|
|
|
-SigPlace
|
|
|
|
===
|
2022-05-02 21:03:16 -05:00
|
|
|
<br/><br/>
|
|
|
|
<a href="otherpage.html">Other Page!</a>
|
2022-08-03 18:58:11 +00:00
|
|
|
<div class="navbar">
|
|
|
|
<div class="navbaritem"><a href="/">HOME</a></div>
|
|
|
|
<div class="navbaritem"><a href="/blog.html">BLOG</a></div>
|
|
|
|
<div class="navbaritem"><a href="/arcade.html">ARCADE</a></div>
|
|
|
|
<div class="navbaritem"><a href="/stream.html">STREAM</a></div><div id="liveindicator"></div>
|
|
|
|
<div class="navbaritem"><a href="/code.html">CODING SERVICES</a></div>
|
|
|
|
<div class="socials">
|
|
|
|
<div class="navbaritem">DISCORD</div>
|
|
|
|
<div class="navbaritem">GITHUB</div>
|
|
|
|
<div class="navbaritem">TWITCH</div>
|
|
|
|
<div class="navbaritem">YOUTUBE</div>
|
|
|
|
<div class="navbaritem">TWITTER</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function getLiveStatus() {
|
|
|
|
document.getElementById("liveindicator").innerText="🔴 LIVE"
|
|
|
|
}
|
|
|
|
getLiveStatus()
|
|
|
|
</script>
|
2022-05-03 14:58:01 +00:00
|
|
|
</div> <!--End Content Body-->
|
2022-05-02 21:03:16 -05:00
|
|
|
<div class="codeForeground" id="codeForeground"></div>
|
|
|
|
<div class="codeBackground" id="codeBackground"></div>
|
2022-05-02 18:16:03 +00:00
|
|
|
</body>
|
|
|
|
<footer>
|
|
|
|
</footer>
|
|
|
|
</html>
|