diff --git a/generator.py b/generator.py
index 35877c6..c8b535a 100644
--- a/generator.py
+++ b/generator.py
@@ -17,4 +17,30 @@ for staticPage in static:
line += "\t\t\t" + line1
output.write(line)
-
\ No newline at end of file
+
+
+
+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.htm") as gifstpl:
+ with open("pages/static/gifs.htm","w+") as output:
+ output.write('
GIFs I have made
')
+ output.write('\n
')
+ count = 0
+ for gif in gifs:
+ if count==0:
+ output.write('\n
\n')
+ count += 1
+ output.write('
' + gif + '
')
+ if count%3==0:
+ output.write('\n
\n
')
+ output.write('\n
\n\n')
+
+makeGifGallery()
\ No newline at end of file
diff --git a/pages/posts/gifs.htm b/pages/posts/gifs.htm
new file mode 100644
index 0000000..e69de29
diff --git a/pages/static/about.htm b/pages/static/about.htm
index 4ff9370..9beea51 100644
--- a/pages/static/about.htm
+++ b/pages/static/about.htm
@@ -1,2 +1,11 @@
For real, I'm just a human being that is here to pontificate on shit and do things sometimes. None of it is important, and probably none of it is worth your time.
+
+
About the Site
+
I made this by coding up a quick SSG to allow for rapid templating in python. I've got the code for this website up on gitea. You can find a link on the projects page.
+
I don't think it's suitable for reuse as is, unless you really want to put in that work, but maybe it will inspire you to make a site like this!
+
Ultimately the site is coded by hand, including the ssg that combines it for upload
\ No newline at end of file
diff --git a/pages/static/fun.htm b/pages/static/fun.htm
index ba85376..561504d 100644
--- a/pages/static/fun.htm
+++ b/pages/static/fun.htm
@@ -1,2 +1,4 @@
\ No newline at end of file
diff --git a/pages/static/gifs.htm b/pages/static/gifs.htm
new file mode 100644
index 0000000..e90f5f0
--- /dev/null
+++ b/pages/static/gifs.htm
@@ -0,0 +1,10 @@
+
\ No newline at end of file
diff --git a/pages/static/overwatch.htm b/pages/static/overwatch.htm
new file mode 100644
index 0000000..55063e7
--- /dev/null
+++ b/pages/static/overwatch.htm
@@ -0,0 +1,14 @@
+
Overwatch
+
Observations
+
I might expand these into blog posts at some point, but some of them stand alone.
+
+
In all of the game modes, the goal is the objective... not getting the most kills. Stop chasing and hold the damn point...
+
The archetypes are just that, sometimes a tank is a better DPS, sometimes the DPS holds better.
+
Protect your fucking healers!
+
Some of you would commit war crimes with how hard you dive healers.
+
I will go out of my way to kill a Symmetra. It's not logic, it's rage.
+
A good Hammond can disrupt an entire team indefintely. A good Rein can fuck up a good Hammond.
+
No one can take an entire team by themselves without a lot of luck. It does happen, and skill makes it easier, but it's mostly luck.
+
Playing on a controller can be just as satisfying as playing on Mouse and Keyboard.
+
+
\ No newline at end of file
diff --git a/pages/static/projects.htm b/pages/static/projects.htm
new file mode 100644
index 0000000..c63a892
--- /dev/null
+++ b/pages/static/projects.htm
@@ -0,0 +1,3 @@
+
Projects
+
SolidScan Solid Scan is a vulnerability scanner. It needs some updating but it works fine.
+
This Site Literally just a repo with this site and how I build it.
\ No newline at end of file
diff --git a/pages/static/trek.htm b/pages/static/trek.htm
index d7d63a1..ab37653 100644
--- a/pages/static/trek.htm
+++ b/pages/static/trek.htm
@@ -1,2 +1,3 @@