Compare commits
18 Commits
752ae3104d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 22b964d881 | |||
| d5091c9961 | |||
| d451215181 | |||
| 480bc4104c | |||
| 26b9187ecd | |||
| 360ca55a18 | |||
| 5e6caf5b0e | |||
| e03be84e94 | |||
| 8ca01e06de | |||
| e874a81701 | |||
| 4e155a3a6f | |||
| 24d18e369b | |||
| 0587616523 | |||
| e8b64b93e1 | |||
| f4ef4ab472 | |||
| 62fe7c0816 | |||
| 4b4f093276 | |||
| 210a6583ef |
@ -8,8 +8,8 @@
|
||||
<link href="/stylesheets/home.css" rel="stylesheet" type="text/css" media="all">
|
||||
<link rel="stylesheet" href="/stylesheets/base.css" type="text/css" media="all">
|
||||
<script src="/javascript/libraries/p5/p5.js"></script>
|
||||
<style>canvas{z-index: -1;}</style>
|
||||
<script src="/javascript/newsim.js"></script>
|
||||
<style>canvas{z-index: -1};</style>
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||
</head>
|
||||
<body>
|
||||
@ -20,13 +20,16 @@
|
||||
<ul id="blogList">
|
||||
<div class="post">
|
||||
<h3 class="postHeader">Welcome To my Site!</h3>
|
||||
<p class="warning">This site is 18+ Warning some content may be hypnotic or contain sensative subjects</p>
|
||||
<p class="warning">This site is 18+ Warning some content may be hypnotic or contain sensative subjects and will be clearly labeled</p>
|
||||
<img class="postImage" src="/media/neurohazard.png" alt="A yellow and black Neurohazard symbol">
|
||||
<img class="postImage" src="/media/memes/0c33eb7e-63d0-485d-9d15-2ab73399ae0e.png" alt="" srcset="">
|
||||
<img class="postImage" src="/media/memes/0c33eb7e-63d0-485d-9d15-2ab73399ae0e.png" alt="A Therianizing radiation warning sign with the text 'Warning: Therianizing radiation risk Ahead area dangerous to your humanity'" srcset="">
|
||||
<img class="postImage" src="/media/memes/IMG_0299.webp" alt="A Shark infested warning sign with a Blahaj" srcset="">
|
||||
</div>
|
||||
<div class="post">
|
||||
<h3 class="postHeader">Blog Posts</h3>
|
||||
<ul>
|
||||
<li><a href="/pages/templates/post.html?02-11-25">02-11-25: Visiting my parents store</a></li>
|
||||
<li><a href="/pages/templates/post.html?01-11-25">01-11-25: My Halloween party</a></li>
|
||||
<li><a href="/pages/templates/post.html?29-10-25">29-10-25: I think I'm about done with the home page</a></li>
|
||||
<li><a href="/pages/templates/post.html?20-10-25">20-10-25: My status has been upgraded</a></li>
|
||||
<li><a href="/pages/templates/post.html?15-10-25">15-10-25: First Post with blog!</a></li>
|
||||
|
||||
@ -188,6 +188,12 @@ function setup(){
|
||||
background(255);
|
||||
describe("A space physics simulator");
|
||||
|
||||
canvas.style("z-index", -1);
|
||||
canvas.style("position", "fixed");
|
||||
canvas.style("top", 0);
|
||||
canvas.style("left", 0);
|
||||
canvas.style("right", 0);
|
||||
canvas.style("bottom", 0);
|
||||
//Load Entities
|
||||
|
||||
for(var i = 0; i <= Settings.entityCount; i+=1){
|
||||
|
||||
@ -19,7 +19,14 @@ fetch("/pages/blog/"+search+".json").then(response => response.json()).then(data
|
||||
postBody.innerHTML = data.postText;
|
||||
}
|
||||
|
||||
}).catch(error => console.error("Error Fetching Json"));
|
||||
}).catch((error) => {
|
||||
postTitle = document.getElementById("postTitle");
|
||||
postSubTitle = document.getElementById("postSubTitle");
|
||||
postText = document.getElementById("postText");
|
||||
postTitle.textContent = "Error fetching post";
|
||||
postSubTitle.textContent = "What happened?"
|
||||
postText.textContent = "You were trying to look for ( " + document.location.search + " ) is this correct?"
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
media/Art/BlastOff.aseprite
Normal file
BIN
media/Art/BlastOff.aseprite
Normal file
Binary file not shown.
BIN
media/Art/BlastOff.png
Normal file
BIN
media/Art/BlastOff.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 572 B |
BIN
media/Art/Ship.aseprite
Normal file
BIN
media/Art/Ship.aseprite
Normal file
Binary file not shown.
BIN
media/Art/Ship.png
Normal file
BIN
media/Art/Ship.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 233 B |
29
newpost.sh
Executable file
29
newpost.sh
Executable file
@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
postDir="pages/blog/"
|
||||
rssFeed="xml/voidblog.xml "
|
||||
echo "Enter Date"
|
||||
read name
|
||||
echo "Enter Title: "
|
||||
read title
|
||||
echo "Enter Subtitle: "
|
||||
read subtitle
|
||||
echo "Enter Date: "
|
||||
read date
|
||||
echo "Enter post type"
|
||||
read postType
|
||||
|
||||
# Modify RSS Feed File with new File Data
|
||||
rssItem=$(sed "s/#TITLE/$title/g; s/#CATEGORY/$postType/g; s/#LINK/https:\/\/voidwillow.neocities.org\/pages\/templates\/blog\?$name/g; s/#DESCRIPTION/$subtitle/g; s/#DATE/$(date "+%a %d %b %Y %H:%M:%S CST")/g")
|
||||
#Add new Item to feed below the <!--Feed--> Comment
|
||||
sed '/<!--Feed-->/a\'$rssItem $rssFeed
|
||||
|
||||
#Create new Post from provided info
|
||||
cd $postDir
|
||||
if [ -e $name.json ]
|
||||
then
|
||||
nvim $name.json
|
||||
else
|
||||
cp template.json $name.json
|
||||
sed -i "s/#TITLE/$title/g; s/#SUBTITLE/$subtitle/g; s/#DATE/$date/g" $name.json
|
||||
nvim $name.json
|
||||
fi
|
||||
7
pages/blog/01-11-25.json
Normal file
7
pages/blog/01-11-25.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"title": "Halloween Party",
|
||||
"subTitle": "Halloween with the polycule",
|
||||
"date": "November 1, 2025",
|
||||
"postType": "text",
|
||||
"postText": "Last night I had a little Halloween horror movie watch party with my polycule. It was a lot of fun but I feel like it could have been better but I didn't really plan it out very well and should have set things up with people outside of the polycule. Trying to setup meetups with friends is so difficult but I just gotta keep doing it. I'm tired of not hanging out with a bunch of the people I know and want to know more. It was great at least to finally have everyone together and watch a movie. Even when you all live together trying to get a bunch of trans women together to do stuff is like trying to keep a bunch of cats in one place. We watched the movie Alien because my girlfriend Mosse hadn't seen it. We came to the conclusion the whole movie is just what happens when you don't listen to the minorities. Every time in the movie when something goes wrong it's because they aren't listening to either the transwoman or black man. The cis woman also does nothing but whine and complain the whole time and cries so much. Frainkly rewatching it was great and glad to do it with everyone"
|
||||
}
|
||||
7
pages/blog/02-11-25.json
Normal file
7
pages/blog/02-11-25.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"title": "Visiting my parents shop",
|
||||
"subTitle": "More website design time",
|
||||
"date": "01 November 2025 11:50PM",
|
||||
"postType": "text",
|
||||
"postText": "I'm currently at my parents shop well really it's my mom's store. She sells wooden signs for special events and hollidays. She also sells antiques too and a bunch of other stuff she has collected over the years. She really loves what she does. She just recently built a big building for her store when she was originally opperating first out of a tent and then a wooden stall and now it's a big metal building almost in an old western style general store kinda. It's really cute and I'm gonna be working on her website while I'm here. I'm hoping to get most of it finished up so I can keep it up instead of just having the test website up. If anyone is wanting to check it out in the future it's located at https://www.thetexassignlady.shop/ Feel free to sign up for the newsletter if you are located near Central Texas and would like to buy a sign. I am gonna be here at least a day and I'm so glad I decided to bring my ex-boyfriends old ultrabook to work on her website than trying to do it on my tablet. Especially since the server software I'm using to write her website doesn't support arm based devices with the database I'm using. I'm pretty sure this is probably gonna be one of my longer post since It's such a departure from the more mundaine but pieceful life I have with my polycule. It's kinda nice seeing my parents even if some of us still hold a lot of resentment towards them for their treatment of us during highdchool especially. But what is in the past is in the past and you have to move past it and accept it in order to grow even if you won't get the exact closure you want. I really hope everyone is liking how my site has been turning out. I've been loving it and I am just wanting to post more and more as we all keep working on it. It really feels like a project that I can have that finally encompassed all of our interests, hobbies, and goals with wanting to be more self actualized about myself and who I am and I feel like it has been rubbing off on my girlfriends lately. My wife the Lavender system put out a really great post about her and her system to her tumblr and I'm just so proud of her. I'm hoping she keeps going. It's been amazing watching her become more of the person I feel like she can be and not what her fear and brain worms drag her down. I love you all and hope whoever is reading this has a great day"
|
||||
}
|
||||
7
pages/blog/rss_item.xml
Normal file
7
pages/blog/rss_item.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<item>
|
||||
<title>#TITLE</title>
|
||||
<category>#CATEGORY</category>
|
||||
<link>#LINK</link>
|
||||
<description>#DESCRIPTION</description>
|
||||
<pubDate>#DATE</pubDate>
|
||||
</item>
|
||||
7
pages/blog/template.json
Normal file
7
pages/blog/template.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"title": "#TITLE",
|
||||
"subTitle": "#SUBTITLE",
|
||||
"date": "#DATE",
|
||||
"postType": "text",
|
||||
"postText": ""
|
||||
}
|
||||
@ -28,8 +28,13 @@
|
||||
<a class="aboutStampIndCont" href="https://pebble.pet" title="pebble"><img class="aboutStamp" src="https://pebble.pet/button.gif" alt="pebble"></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="buttonSection">
|
||||
<h1>Web Rings</h1>
|
||||
<script src="https://transring.neocities.org/ring.js"></script>
|
||||
</div>
|
||||
<a id="back" href="/index.html">Go Back</a>
|
||||
</div>
|
||||
<a id="back" href="/index.html">Go Back</a>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -5,6 +5,8 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Void Links</title>
|
||||
<script src="/javascript/libraries/p5/p5.js"></script>
|
||||
<script src="/javascript/newsim.js"></script>
|
||||
<link rel="stylesheet" href="/stylesheets/base.css">
|
||||
<link rel="stylesheet" href="/stylesheets/links.css">
|
||||
</head>
|
||||
|
||||
@ -3,12 +3,18 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/stylesheets/base.css">
|
||||
<link href="members.css" rel="stylesheet" type="text/css" media="all">
|
||||
<link rel="stylesheet" href="/stylesheets/cosmic.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="mainView">
|
||||
<h1>I'm Cosmic</h1>
|
||||
<h2>Here are some memes</h2>
|
||||
<a id="back" href="/index.html">Go Back</a>
|
||||
<hr>
|
||||
<img src="/media/memes/ApproachingMeProto.png" alt="The Approaching me meme from Jojo's bizare adventure" srcset="">
|
||||
<img src="/media/memes/Dab.png" alt="Dabbing on them" srcset="">
|
||||
<img src="/media/memes/Doing it to em.png" alt="Had to do it to em with my protogen uncolored" srcset="">
|
||||
<img src="/media/memes/NoRam_Cyclles.png" alt="No Ram?" srcset="">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -6,12 +6,16 @@
|
||||
body{
|
||||
background-image: url("/media/Art/EmptySpace.png");
|
||||
background-size: 6%;
|
||||
cursor: url("/media/Art/comet.png");
|
||||
cursor: url('/media/Art/Ship.png'), auto;
|
||||
color: rgb(4, 255, 138);
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
|
||||
a{
|
||||
cursor: url("/media/Art/BlastOff.png"), auto;
|
||||
}
|
||||
|
||||
#introtitle{
|
||||
font-family: SPACEMAN;
|
||||
color:rgb(2, 255, 192)
|
||||
|
||||
4
stylesheets/cosmic.css
Normal file
4
stylesheets/cosmic.css
Normal file
@ -0,0 +1,4 @@
|
||||
img{
|
||||
width: 50vw;
|
||||
margin: 15px;
|
||||
}
|
||||
@ -17,7 +17,7 @@ body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width:100%;
|
||||
cursor: url('/media/Art/comet.png'), auto;
|
||||
cursor: url('/media/Art/Ship.png'), auto;
|
||||
}
|
||||
|
||||
ul{
|
||||
@ -25,7 +25,7 @@ ul{
|
||||
}
|
||||
|
||||
a{
|
||||
cursor:crosshair;
|
||||
cursor: url("/media/Art/BlastOff.png"), auto;
|
||||
}
|
||||
|
||||
#introtitle{
|
||||
@ -135,6 +135,10 @@ div.post {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.post li{
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.postImage{
|
||||
margin: 3px;
|
||||
width: 50%;
|
||||
|
||||
@ -6,8 +6,28 @@
|
||||
<author>The Void System</author>
|
||||
<webMaster>willowfyi@proton.me</webMaster>
|
||||
<pubDate>Tue 7 Oct 2025 13:00 GMT</pubDate>
|
||||
<lastBuildDate>Thr 15 Oct 2025 18:52 GMT</lastBuildDate>
|
||||
<lastBuildDate>Saturday 01 November 2025 18:52 GMT</lastBuildDate>
|
||||
<!--Feed-->
|
||||
<item>
|
||||
<title>Visiting my parents shop</title>
|
||||
<link>https://voidwillow.neocities.org/pages/templates/post.html?02-11-25</link>
|
||||
<description>More website design time with painting signs</description>
|
||||
<pubDate>02 Nov 2025</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<title>Halloween Party</title>
|
||||
<category>Blog Post</category>
|
||||
<link>https://voidwillow.neocities.org/pages/templates/post.html?01-11-25.json</link>
|
||||
<description>Having a fun night with my polycule</description>
|
||||
<pubDate>01 Nov 2025</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<title>I think I'm about done with the home page</title>
|
||||
<category>Site Update</category>
|
||||
<link>https://voidwillow.neocities.org/pages/templates/post.html?29-10-25.json</link>
|
||||
<description>I think it's almost there</description>
|
||||
<pubDate>29 Oct 2025</pubDate>
|
||||
</item>
|
||||
<item>
|
||||
<title>My status has been upgraded</title>
|
||||
<category>Life Update</category>
|
||||
|
||||
Reference in New Issue
Block a user