I made changes. A lot of them.

This commit is contained in:
jaycee 2025-01-01 11:04:31 -07:00
parent eb8d35cdb8
commit b0f4d89334
27 changed files with 322 additions and 24 deletions

View File

@ -13,23 +13,42 @@ for staticPage in static:
if "%Content%" in line:
line = ""
with open("pages/static/" + staticPage) as content:
for line1 in content:
for line1 in content:
line += "\t\t\t" + line1
output.write(line)
for postPage in posts:
with open("site/"+ postPage, 'w+') as output:
for page in templates:
with open ("templates/" + page + ".htm") as template:
for line in template:
if "%Content%" in line:
line = ""
with open("pages/posts/" + postPage,'r') as content:
for line1 in content:
line += "\t\t\t" + line1
output.write(line)
with open("pages/static/posts.html", 'w+') as output:
output.write("<h1>Posts</h1>\n<p>These are my random ramblings. The titles should be informative... or it'll be a fun mystery!</p>")
output.write("<ul>")
for post in posts:
output.write("<li><a href='" + post + "'> " + post + "</a></li>\n")
output.write("</ul>")
def makeGifGallery():
gifs = []
for file in os.listdir('site/images/gifs/customgifs/'):
with open("templates/gifwrap.htm") as wrap:
for line in wrap:
gif = line.replace("%gif%", "images/gifs/customgifs/" + file)
gifs.append(gif)
with open("pages/posts/gifs.html") as gifstpl:
with open("pages/semistatic/gifs.html") as gifstpl:
with open("pages/static/gifs.html","w+") as output:
output.write('<h1>GIFs I have made</h1>')
output.write('\n<table style="width: 800px; margin-left: auto; margin-right: auto;">')
@ -43,4 +62,4 @@ def makeGifGallery():
output.write('\n</tr>\n<tr>')
output.write('\n</table>\n\n')
makeGifGallery()
makeGifGallery()

65
generator.py.bak Normal file
View File

@ -0,0 +1,65 @@
import os
static = os.listdir("pages/static/")
posts = os.listdir("pages/posts")
templates = ["header","navbar","sidebar","body","footer"]
for staticPage in static:
with open("site/" + staticPage, 'w+') as output:
for page in templates:
with open ("templates/" + page + ".htm") as template:
for line in template:
if "%Content%" in line:
line = ""
with open("pages/static/" + staticPage) as content:
for line1 in content:
line += "\t\t\t" + line1
output.write(line)
for postPage in posts:
with open("site/"+ postPage, 'w+') as output:
for page in templates:
with open ("templates/" + page + ".htm") as template:
for line in template:
if "%Content%" in line:
line = ""
with open("pages/posts/" + postPage,'r') as content:
for line1 in content:
line += "\t\t\t" + line1
output.write(line)
with open("pages/static/posts.html", 'w+') as output:
output.write("<h1>Posts</h1>\n<p>These are my random ramblings. The titles should be informative... or it'll be a fun mystery!</p>")
output.write("<ul>")
for post in posts:
output.write("<a href='" + post + "'> " + post + "</a>\n")
output.write("</ul>")
def makeGifGallery():
gifs = []
for file in os.listdir('site/images/gifs/customgifs/'):
with open("templates/gifwrap.htm") as wrap:
for line in wrap:
gif = line.replace("%gif%", "images/gifs/customgifs/" + file)
gifs.append(gif)
with open("pages/semistatic/gifs.html") as gifstpl:
with open("pages/static/gifs.html","w+") as output:
output.write('<h1>GIFs I have made</h1>')
output.write('\n<table style="width: 800px; margin-left: auto; margin-right: auto;">')
count = 0
for gif in gifs:
if count==0:
output.write('\n<tr>\n')
count += 1
output.write('<td>' + gif + '</td>')
if count%3==0:
output.write('\n</tr>\n<tr>')
output.write('\n</table>\n\n')
makeGifGallery()

View File

@ -0,0 +1,4 @@
<h1>This is a test</h1>
<p>
This was only a test post
</p>

11
pages/posts/001-2025.html Normal file
View File

@ -0,0 +1,11 @@
<h1>January 1, 2025</h1>
<p>
To quote <span style="italic">Justin Pierre</span> of Motion City Soundtrack:
</p>
<p style="italic">
This must be it, welcome to the new year...
</p>
<p>
All I want in the world is to live in less interesting times, but that's unlikely to happen. The only future constant is going to be turmoil: ecologically, economically, politically, and globally. Things are kind of shit and going further to shit.
</p>

View File

View File

@ -0,0 +1 @@
<a href='posts/000-test.html'> 000-test.html</a>

View File

@ -1,10 +1,10 @@
<h1>GIFs I have made</h1>
<table style="width: 800px; margin-left: auto; margin-right: auto;">
<tr>
<td><img src="images/gifs/customgifs/hammond.gif" alt="images/gifs/customgifs/hammond.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/fbomb.gif" alt="images/gifs/customgifs/fbomb.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/queen.gif" alt="images/gifs/customgifs/queen.gif" style="width:150px;"/></td>
<td><img src="images/gifs/customgifs/Mei.gif" alt="images/gifs/customgifs/Mei.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/Mei2.gif" alt="images/gifs/customgifs/Mei2.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/queen.gif" alt="images/gifs/customgifs/queen.gif" style="width:150px;"/></td>
</tr>
<tr><td><img src="images/gifs/customgifs/junk.gif" alt="images/gifs/customgifs/junk.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/Mei.gif" alt="images/gifs/customgifs/Mei.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/NoSym.gif" alt="images/gifs/customgifs/NoSym.gif" style="width:150px;"/></td>
<tr><td><img src="images/gifs/customgifs/hammond.gif" alt="images/gifs/customgifs/hammond.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/fbomb.gif" alt="images/gifs/customgifs/fbomb.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/NoSym.gif" alt="images/gifs/customgifs/NoSym.gif" style="width:150px;"/></td>
</tr>
<tr><td><img src="images/gifs/customgifs/Mei2.gif" alt="images/gifs/customgifs/Mei2.gif" style="width:150px;"/></td>
<tr><td><img src="images/gifs/customgifs/junk.gif" alt="images/gifs/customgifs/junk.gif" style="width:150px;"/></td>
</table>

4
pages/static/posts.html Normal file
View File

@ -0,0 +1,4 @@
<h1>Posts</h1>
<p>These are my random ramblings. The titles should be informative... or it'll be a fun mystery!</p><ul><li><a href='000-test.html'> 000-test.html</a></li>
<li><a href='001-2025.html'> 001-2025.html</a></li>
</ul>

44
site/000-test.html Normal file
View File

@ -0,0 +1,44 @@
<!doctype html>
<html>
<head>
<title>J4YC33</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/images/favico.png">
</head>
<body >
<header style="text-align: center;">
<a href="index.html"><img style="margin-left: auto; margin-right: auto;" src="images/gifs/header.gif" alt="J4YC33 Banner"/></a>
</header>
<div id="container">
<nav style="margin-left: auto; margin-right: auto; text-align: center;">
<a class="navbar" href="about.html">About</a> |
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">
<h1>This is a test</h1>
<p>
This was only a test post
</p>
</content>
<hr>
<p class="center"><a href="https://j4yc33.123guestbook.com/">Guestbook?</a><br /></p>
<iframe src="https://www3.cbox.ws/box/?boxid=3518910&boxtag=h5mbfK" width="100%" height="150" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
<div id="clear"></div>
</div>
<footer style="text-align: center;"">
<hr />
<p>
J4YC33 made this site. With a custom SSG. <br />
(cc0) <br />
</p>
</footer>
</body>
</html>

51
site/001-2025.html Normal file
View File

@ -0,0 +1,51 @@
<!doctype html>
<html>
<head>
<title>J4YC33</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/images/favico.png">
</head>
<body >
<header style="text-align: center;">
<a href="index.html"><img style="margin-left: auto; margin-right: auto;" src="images/gifs/header.gif" alt="J4YC33 Banner"/></a>
</header>
<div id="container">
<nav style="margin-left: auto; margin-right: auto; text-align: center;">
<a class="navbar" href="about.html">About</a> |
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">
<h1>January 1, 2025</h1>
<p>
To quote <span style="italic">Justin Pierre</span> of Motion City Soundtrack:
</p>
<p style="italic">
This must be it, welcome to the new year...
</p>
<p>
All I want in the world is to live in less interesting times, but that's unlikely to happen. The only future constant is going to be turmoil: ecologically, economically, politically, and globally. Things are kind of shit and going further to shit.
</p>
</content>
<hr>
<p class="center"><a href="https://j4yc33.123guestbook.com/">Guestbook?</a><br /></p>
<iframe src="https://www3.cbox.ws/box/?boxid=3518910&boxtag=h5mbfK" width="100%" height="150" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
<div id="clear"></div>
</div>
<footer style="text-align: center;"">
<hr />
<p>
J4YC33 made this site. With a custom SSG. <br />
(cc0) <br />
</p>
</footer>
</body>
</html>

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,18 +16,19 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">
<h1>GIFs I have made</h1>
<table style="width: 800px; margin-left: auto; margin-right: auto;">
<tr>
<td><img src="images/gifs/customgifs/hammond.gif" alt="images/gifs/customgifs/hammond.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/fbomb.gif" alt="images/gifs/customgifs/fbomb.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/queen.gif" alt="images/gifs/customgifs/queen.gif" style="width:150px;"/></td>
<td><img src="images/gifs/customgifs/Mei.gif" alt="images/gifs/customgifs/Mei.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/Mei2.gif" alt="images/gifs/customgifs/Mei2.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/queen.gif" alt="images/gifs/customgifs/queen.gif" style="width:150px;"/></td>
</tr>
<tr><td><img src="images/gifs/customgifs/junk.gif" alt="images/gifs/customgifs/junk.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/Mei.gif" alt="images/gifs/customgifs/Mei.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/NoSym.gif" alt="images/gifs/customgifs/NoSym.gif" style="width:150px;"/></td>
<tr><td><img src="images/gifs/customgifs/hammond.gif" alt="images/gifs/customgifs/hammond.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/fbomb.gif" alt="images/gifs/customgifs/fbomb.gif" style="width:150px;"/></td><td><img src="images/gifs/customgifs/NoSym.gif" alt="images/gifs/customgifs/NoSym.gif" style="width:150px;"/></td>
</tr>
<tr><td><img src="images/gifs/customgifs/Mei2.gif" alt="images/gifs/customgifs/Mei2.gif" style="width:150px;"/></td>
<tr><td><img src="images/gifs/customgifs/junk.gif" alt="images/gifs/customgifs/junk.gif" style="width:150px;"/></td>
</table>
</content>

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

42
site/posts.html Normal file
View File

@ -0,0 +1,42 @@
<!doctype html>
<html>
<head>
<title>J4YC33</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/images/favico.png">
</head>
<body >
<header style="text-align: center;">
<a href="index.html"><img style="margin-left: auto; margin-right: auto;" src="images/gifs/header.gif" alt="J4YC33 Banner"/></a>
</header>
<div id="container">
<nav style="margin-left: auto; margin-right: auto; text-align: center;">
<a class="navbar" href="about.html">About</a> |
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">
<h1>Posts</h1>
<p>These are my random ramblings. The titles should be informative... or it'll be a fun mystery!</p><ul><li><a href='000-test.html'> 000-test.html</a></li>
</ul> </content>
<hr>
<p class="center"><a href="https://j4yc33.123guestbook.com/">Guestbook?</a><br /></p>
<iframe src="https://www3.cbox.ws/box/?boxid=3518910&boxtag=h5mbfK" width="100%" height="150" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
<div id="clear"></div>
</div>
<footer style="text-align: center;"">
<hr />
<p>
J4YC33 made this site. With a custom SSG. <br />
(cc0) <br />
</p>
</footer>
</body>
</html>

40
site/posts/000-test.html Normal file
View File

@ -0,0 +1,40 @@
<!doctype html>
<html>
<head>
<title>J4YC33</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/images/favico.png">
</head>
<body >
<header style="text-align: center;">
<a href="index.html"><img style="margin-left: auto; margin-right: auto;" src="images/gifs/header.gif" alt="J4YC33 Banner"/></a>
</header>
<div id="container">
<nav style="margin-left: auto; margin-right: auto; text-align: center;">
<a class="navbar" href="about.html">About</a> |
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">
</content>
<hr>
<p class="center"><a href="https://j4yc33.123guestbook.com/">Guestbook?</a><br /></p>
<iframe src="https://www3.cbox.ws/box/?boxid=3518910&boxtag=h5mbfK" width="100%" height="150" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
<div id="clear"></div>
</div>
<footer style="text-align: center;"">
<hr />
<p>
J4YC33 made this site. With a custom SSG. <br />
(cc0) <br />
</p>
</footer>
</body>
</html>

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -56,6 +56,10 @@ ul.styletextalignleft{
li.liststyletypedisc {
list-style-type: disc;
}
li::marker{
color: #FFF;
}
span.font-weight\:bold\;font-style\:italic\;{
font-weight: bold;
font-style: italic;
@ -76,4 +80,4 @@ dl.text-align\:left\;{
}
iframe.border-style\:none\;{
border: none;
}
}

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -16,7 +16,8 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>
<content style="text-align: center; ">

View File

@ -3,5 +3,6 @@
<a class="navbar" href="fun.html">Fun</a> |
<a class="navbar" href="links.html">Links</a> |
<a class="navbar" href="trek.html">Star Trek</a> |
<a class="navbar" href="shadowbox.html">Shadowbox</a>
<a class="navbar" href="shadowbox.html">Shadowbox</a> |
<a class="navbar" href="posts.html">Posts</a>
</nav>