Compare commits
6 Commits
926f2b6174
...
9156e80c37
| Author | SHA1 | Date | |
|---|---|---|---|
| 9156e80c37 | |||
| cd75a1f0d5 | |||
| 23684d23b2 | |||
| 38a71f3d4b | |||
| 9ea04660fc | |||
| c22ddbccdb |
@ -7,6 +7,7 @@
|
|||||||
<title>The Void System</title>
|
<title>The Void System</title>
|
||||||
<link href="/stylesheets/home.css" rel="stylesheet" type="text/css" media="all">
|
<link href="/stylesheets/home.css" rel="stylesheet" type="text/css" media="all">
|
||||||
<link rel="stylesheet" href="/stylesheets/base.css" type="text/css" media="all">
|
<link rel="stylesheet" href="/stylesheets/base.css" type="text/css" media="all">
|
||||||
|
<script src="/libraries/p5/p5.js"></script>
|
||||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@ -154,6 +155,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="/javascript/simulation.js"></script>
|
<script src="/javascript/simulation.js"></script>
|
||||||
|
<script src="/javascript/remeber.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
<!--Gitea Discord Test 2-->
|
<!--Gitea Discord Test 2-->
|
||||||
|
|||||||
11
javascript/remeber.js
Normal file
11
javascript/remeber.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
function remeberMe(){
|
||||||
|
let input = document.getElementById("username");
|
||||||
|
let username = input.value;
|
||||||
|
document.cookie = "username=" + username;
|
||||||
|
console.log("Thank you "+ username);
|
||||||
|
}
|
||||||
|
|
||||||
|
function forgetMe(){
|
||||||
|
document.cookie = "username=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/"
|
||||||
|
console.log("Poof!...");
|
||||||
|
}
|
||||||
@ -5,35 +5,6 @@ ctx.canvas.height = window.screen.availHeight;
|
|||||||
rock = new Image();
|
rock = new Image();
|
||||||
rock.src = "/media/Art/Rock1.png";
|
rock.src = "/media/Art/Rock1.png";
|
||||||
|
|
||||||
ctx.fill()
|
|
||||||
|
|
||||||
function remeberMe(){
|
|
||||||
let input = document.getElementById("username");
|
|
||||||
let username = input.value;
|
|
||||||
document.cookie = "username=" + username;
|
|
||||||
console.log(username);
|
|
||||||
cookieStore.getAll().then(data => {
|
|
||||||
console.log(data);
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
function forgetMe(){
|
|
||||||
document.cookie = "username=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/"
|
|
||||||
console.log("Poof!...");
|
|
||||||
}
|
|
||||||
cookieStore.getAll().then(data => {
|
|
||||||
if (data){
|
|
||||||
for(let i = 0; i < data.length; i++){
|
|
||||||
console.log(data[i]["value"]);
|
|
||||||
if (data[i]["name"] == "username"){
|
|
||||||
let username = data[i]["value"];
|
|
||||||
document.getElementById("intotitle").textContent = "Welcome back " + username + " to the Void System";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(document.cookie);
|
|
||||||
})
|
|
||||||
|
|
||||||
var resolutionTag = document.getElementById("resolutionTag");
|
var resolutionTag = document.getElementById("resolutionTag");
|
||||||
resolutionTag.textContent = "document: " + window.screen.availWidth + "x" + window.screen.availHeight + ", inner window: " + window.innerWidth + "x" + window.innerHeight;
|
resolutionTag.textContent = "document: " + window.screen.availWidth + "x" + window.screen.availHeight + ", inner window: " + window.innerWidth + "x" + window.innerHeight;
|
||||||
@ -57,6 +28,7 @@ particle = {
|
|||||||
draw: function(){
|
draw: function(){
|
||||||
ctx.drawImage(rock, self.x, self.y);
|
ctx.drawImage(rock, self.x, self.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="mainView">
|
<div class="mainView">
|
||||||
<h1>I'm Cosmic</h1>
|
<h1>I'm Cosmic</h1>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -4,12 +4,93 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="stylesheet" href="/stylesheets/dallas.css">
|
||||||
<title>Dallas' Dragon Den</title>
|
<title>Dallas' Dragon Den</title>
|
||||||
<style>
|
|
||||||
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!---->
|
<!---->
|
||||||
|
<div id="mainView">
|
||||||
|
<h1>Gear Collection</h1>
|
||||||
|
<div class="gearCollection">
|
||||||
|
<ul id="gearList">
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li class="gearItem">
|
||||||
|
<a href="http://"></a>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h1>My Pic collection</h1>
|
||||||
|
<div class="gallery">
|
||||||
|
<ul id="galleryList">
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<img:src></img:src>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -8,6 +8,7 @@
|
|||||||
<title>Document</title>
|
<title>Document</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<h1>Jupiter talks about the headspace</h1>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -5,9 +5,19 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="/stylesheets/base.css">
|
<link rel="stylesheet" href="/stylesheets/base.css">
|
||||||
<title>Document</title>
|
<title>Luna's poetry</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div id="mainView">
|
||||||
|
<h1 id="intotitle">Welcome to Luna's Poetry collection</h1>
|
||||||
|
<ul id="poemList">
|
||||||
|
<li class="poem">
|
||||||
|
<div class="poem">
|
||||||
|
<h3 class="poemTitle"></h3>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -8,6 +8,7 @@
|
|||||||
<title>TechRunner's Programs</title>
|
<title>TechRunner's Programs</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<h1>TechRunner's Electronics Projects</h1>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -16,15 +16,20 @@
|
|||||||
<textarea readonly=""><a href="https://voidwillow.neocities.org"><img src="https://voidwillow.neocities.org/media/Art/VoidSystem.png" alt=""></a></textarea>
|
<textarea readonly=""><a href="https://voidwillow.neocities.org"><img src="https://voidwillow.neocities.org/media/Art/VoidSystem.png" alt=""></a></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="buttonSection">
|
<div class="buttonSection">
|
||||||
<h1>Buttons Collecteion</h1>
|
<h1>Buttons Collected from other cool pages</h1>
|
||||||
<div class="buttonColumn">
|
<div class="buttonColumn">
|
||||||
<div class="buttonRow">
|
<div class="buttonRow">
|
||||||
<a href="https://lanhikari.neocities.org/"><img src="https://lanhikari.neocities.org/button.png"></a>
|
<a href="https://lanhikari.neocities.org/"><img src="https://lanhikari.neocities.org/button.png"></a>
|
||||||
<a href="https://ransei.neocities.org/"><img src="https://ransei.neocities.org/assets/img/embeded.gif"></a>
|
<a href="https://ransei.neocities.org/"><img src="https://ransei.neocities.org/assets/img/embeded.gif"></a>
|
||||||
<a href="https://tanukicomputing.neocities.org/" target="_blank" style="cursor: url('https://tanukicomputing.neocities.org/images/cde_mouse.png'), default;"><img src="https://tanukicomputing.neocities.org/buttons/Tanuki-Computing2.0.gif" style="width:88px;height:31px;" loading="lazy" alt="a beige square resembeling a CDE window. “Tanuki-” is written between the window buttons, and “Computing” in the middle of the image. There’s also a pixel art drawing of Tom Nook, and the word Neocitites."></a> </div>
|
<a href="https://tanukicomputing.neocities.org/" target="_blank" style="cursor: url('https://tanukicomputing.neocities.org/images/cde_mouse.png'), default;"><img src="https://tanukicomputing.neocities.org/buttons/Tanuki-Computing2.0.gif" style="width:88px;height:31px;" loading="lazy" alt="a beige square resembeling a CDE window. “Tanuki-” is written between the window buttons, and “Computing” in the middle of the image. There’s also a pixel art drawing of Tom Nook, and the word Neocitites."></a> </div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="buttonRow">
|
||||||
|
<a href="https://cybird.nekoweb.org" target="_blank"><img src="https://cybird.nekoweb.org/buttons/CybirdNest.gif"></a>
|
||||||
|
<a class="aboutStampIndCont" href="https://pebble.pet" title="pebble"><img class="aboutStamp" src="https://pebble.pet/button.gif" alt="pebble"></a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -8,6 +8,7 @@
|
|||||||
<title>Document</title>
|
<title>Document</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<h1>The Void Gallery</h1>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -53,6 +53,7 @@
|
|||||||
<p></p>
|
<p></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<a href="/index.html">Go Back</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -1,22 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="/stylesheets/base.css">
|
|
||||||
<title>Luna's poetry</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="mainView">
|
|
||||||
<h1 id="intotitle">Welcome to Luna's Poetry collection</h1>
|
|
||||||
<ul id="poemList">
|
|
||||||
<li class="poem">
|
|
||||||
<div class="poem">
|
|
||||||
<h3 class="poemTitle"></h3>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
7
stylesheets/dallas.css
Normal file
7
stylesheets/dallas.css
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
body{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul{
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
@ -8,6 +8,13 @@
|
|||||||
<pubDate>Tue 7 Oct 2025 13:00 GMT</pubDate>
|
<pubDate>Tue 7 Oct 2025 13:00 GMT</pubDate>
|
||||||
<lastBuildDate>Thr 15 Oct 2025 18:52 GMT</lastBuildDate>
|
<lastBuildDate>Thr 15 Oct 2025 18:52 GMT</lastBuildDate>
|
||||||
<!--Feed-->
|
<!--Feed-->
|
||||||
|
<item>
|
||||||
|
<title>My status has been upgraded</title>
|
||||||
|
<category>Life Update</category>
|
||||||
|
<link>https://voidwillow.neocities.org/pages/templates/post.html?20-10-25</link>
|
||||||
|
<description>I'm now an Aunt!</description>
|
||||||
|
<pubDate>20 Oct 2025</pubDate>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>First Blog Post with Post page</title>
|
<title>First Blog Post with Post page</title>
|
||||||
<category>Blog Post</category>
|
<category>Blog Post</category>
|
||||||
|
|||||||
Reference in New Issue
Block a user