steve0greatness,
created on Monday, 15 July 2024, 16:02:46 (1721059366),
received on Monday, 15 July 2024, 16:03:53 (1721059433)
Author identity: Steve0Greatness <steve0greatnessiscool@gmail.com>
e1318ba0a9b7fe2e3c50ceaa2ac6d72ce8b008e5
build.py
@@ -50,8 +50,8 @@ DISALLOWED_SITEMAP = {
}
REDIRECTS = {
"link-tree.html": "list/link-tree.html", # Old location -> new location
"extras.html": "https://steve0greatness.github.io/extras",
"link-tree.html": "https://steve0greatness.nekoweb.org/list/link-tree.html", # Old location -> new location
"extras.html": "https://steve0greatness.nekoweb.org/extras",
"guestbook.html": "https://steve0greatness.atabook.org/",
}
@@ -228,28 +228,28 @@ def CreateJSONFeed():
CreatedJSON = {
"version": "https://jsonfeed.org/version/1",
"title": "Steve0Greatness' Blog",
"home_page_url": "https://steve0greatness.github.io",
"feed_url": "https://steve0greatness.github.io/blog/feed.rss",
"home_page_url": "https://steve0greatness.nekoweb.org",
"feed_url": "https://steve0greatness.nekoweb.org/blog/feed.rss",
"language": "en-US",
"favicon": "https://steve0greatness.github.io/favicon.ico",
"favicon": "https://steve0greatness.nekoweb.org/favicon.ico",
"description": "A blog by a human being.",
"authors": [
{
"name": "Steve0Greatness",
"url": "https://steve0greatness.github.io"
"url": "https://steve0greatness.nekoweb.org"
}
],
"items": []
}
for post in PostList:
CreatedJSON["items"].append({
"id": "https://steve0greatness.github.io/blog/" + post["pathname"],
"id": "https://steve0greatness.nekoweb.org/blog/" + post["pathname"],
"title": "JSON Feed version 1.1",
"icon": "https://steve0greatness.github.io/favicon.ico",
"icon": "https://steve0greatness.nekoweb.org/favicon.ico",
"content_html": post["content"],
"date_published": post["atom-post-time"],
"date_modified": post["atom-update-time"],
"url": "https://steve0greatness.github.io/blog/" + post["pathname"]
"url": "https://steve0greatness.nekoweb.org/blog/" + post["pathname"]
})
with open(BUILD_DIRECTORY + "/blog/feed.json", "w") as JSONFeedFile:
DumpJSON(CreatedJSON, JSONFeedFile)
views/_layout.html
@@ -5,7 +5,7 @@
{% block Head %}
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}{% endblock %} - S0G</title>
<title>Deprecated - {% block title %}{% endblock %} - S0G</title>
<style>
body {
background: black;
views/blog-feed.atom
@@ -1,26 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
<id>https://steve0greatness.github.io/blog/</id>
<link type="text/html" rel="alternate" href="https://steve0greatness.github.io/blog/" />
<link type="application/atom+xml" rel="self" href="https://steve0greatness.github.io/blog/feed.atom" />
<id>https://steve0greatness.nekoweb.org/blog/</id>
<link type="text/html" rel="alternate" href="https://steve0greatness.nekoweb.org/blog/" />
<link type="application/atom+xml" rel="self" href="https://steve0greatness.nekoweb.org/blog/feed.atom" />
<title>Steve0Greatness' Blog</title>
<subtitle>A blog by a human being</subtitle>
<author>
<name>Steve0Greatness</name>
<uri>https://steve0greatness.github.io</uri>
<uri>https://steve0greatness.nekoweb.org</uri>
</author>
<generator>Custom w/Jinja</generator>
<updated>{{PostList[0]["atom-update-time"]}}</updated>
{% for post in PostList %}
<entry>
<title>{{post["title"]}}</title>
<link type="text/html" rel="alternate" href="https://steve0greatness.github.io/blog/{{post['pathname']}}" />
<link type="text/plain" rel="alternate" href="https://steve0greatness.github.io/blog/{{post['plaintext']}}" />
<link type="text/html" rel="alternate" href="https://steve0greatness.nekoweb.org/blog/{{post['pathname']}}" />
<link type="text/plain" rel="alternate" href="https://steve0greatness.nekoweb.org/blog/{{post['plaintext']}}" />
<content type="html">
<p>Depending on your Feed reader, you may want to <a href="https://steve0greatness.github.io/blog/{{post['pathname']}}">read this article online</a>,</p>
<p>Depending on your Feed reader, you may want to <a href="https://steve0greatness.nekoweb.org/blog/{{post['pathname']}}">read this article online</a>,</p>
{{post["rss-content"]}}
</content>
<id>https://steve0greatness.github.io/blog/{{post['pathname']}}</id>
<id>https://steve0greatness.nekoweb.org/blog/{{post['pathname']}}</id>
<published>{{post['atom-post-time']}}</published>
<updated>{{post['atom-update-time']}}</updated>
</entry>
views/blog-feed.rss
@@ -2,16 +2,16 @@
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
<atom:link href="https://steve0greatness.github.io/blog/feed.rss" rel="self" type="application/rss+xml" />
<atom:link href="https://steve0greatness.nekoweb.org/blog/feed.rss" rel="self" type="application/rss+xml" />
<title>Steve0Greatness' Blog</title>
<link>https://steve0greatness.github.io/</link>
<link>https://steve0greatness.nekoweb.org/</link>
<description>A blog by a human being.</description>
<language>en-us</language>
<generator>Custom w/Jinja</generator>
<image>
<link>https://steve0greatness.github.io/</link>
<link>https://steve0greatness.nekoweb.org/</link>
<title>Steve0Greatness' Blog</title>
<url>https://steve0greatness.github.io/RSS-Img.png</url>
<url>https://steve0greatness.nekoweb.org/RSS-Img.png</url>
<description>A blog by a human being.</description>
<height>144</height>
<width>120</width>
@@ -19,10 +19,10 @@
{% for post in PostList %}
<item>
<title>{{post["title"]}}</title>
<link>https://steve0greatness.github.io/blog/{{post["pathname"]}}</link>
<atom:link type="text/plain" rel="alternate" href="https://steve0greatness.github.io/blog/{{post['plaintext']}}" />
<link>https://steve0greatness.nekoweb.org/blog/{{post["pathname"]}}</link>
<atom:link type="text/plain" rel="alternate" href="https://steve0greatness.nekoweb.org/blog/{{post['plaintext']}}" />
<description>
<p>Depending on your Feed reader, you may want to <a href="https://steve0greatness.github.io/blog/{{post['pathname']}}">read this article online</a>.</p>
<p>Depending on your Feed reader, you may want to <a href="https://steve0greatness.nekoweb.org/blog/{{post['pathname']}}">read this article online</a>.</p>
{{post["rss-content"]}}
</description>
<guid isPermaLink="false">{{post['pathname']}}</guid>
@@ -33,4 +33,4 @@
{% endfor %}
</channel>
</rss>
</rss>
views/blog-list.html
@@ -8,6 +8,7 @@
<meta property="og:type" content="website" />
<meta property="og:title" content="Blog index" />
<meta property="og:url" content="https://steve0greatness.nekoweb.org/blog/" />
<link rel="canonical" href="https://steve0greatness.nekoweb.org/blog/" />
{% endblock %}
{% block title %}Blog Index{% endblock %}
{% from "_macros.html" import GenerateBreadcrumbs %}
views/blog-post.html
@@ -14,6 +14,7 @@
<meta property="profile:username" content="Steve0Greatness" />
<meta property="profile:gender" content="male" />
<meta property="og:url" content="https://steve0greatness.nekoweb.org/blog/{{PostPath}}" />
<link rel="canonical" href="https://steve0greatness.nekoweb.org/blog/{{PostPath}}" />
{% endblock %}
{% from "_macros.html" import GenerateBreadcrumbs %}
{% block breadcrumbs %}{{ GenerateBreadcrumbs([{ "href": "/blog","title": "Blog Index" }, {"href": "/blog/" + PostPath, "title": Title}]) }}{% endblock %}
views/index.html
@@ -5,120 +5,12 @@
<meta property="og:title" content="Index" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://steve0greatness.nekoweb.org/" />
<link rel="canonical" href="https://steve0greatness.nekoweb.org" />
{% endblock %}
{% block title %}Homepage{% endblock %}
{% block breadcrumbs %}{% endblock %}
{% block content %}
<h1>Steve0Greatness</h1>
<p>Hey there! I'm <i>Steve0Greatness</i>(<a href="/blog/name.html">About my username</a>). Welcome to my website!</p>
<p>I'm a <i>human being</i> with an interest in full-stack web-dev. I'm also a proponent for <dfn id="floss"><abbr title="Free/Libre Open Source Software">FLOSS</abbr></dfn>. Despite this, I have a really bad hoarding problem, specifically for accounts on random websites I visit once every 5 years; because of this, I have a list of these: <a href="/list/link-tree.html">link tree</a>.</p>
<h2 id="cool-people-projects">Cool People & Projects!</h2>
<div class="ticker-wrapper pauseonhover">
<div class="ticker cool-people-prj">
<a href="https://tauon.dev/" target="_blank">
<img
src="https://tauon.dev/images/88x31/lily.png"
alt="Lily"
title="Lily"
width="88"
height="31"
style="image-rendering: pixelated"
/>
</a>
<a href="https://dimden.dev/">
<img
src="https://dimden.dev/services/images/88x31.gif"
width="88"
height="31"
alt="dimden"
title="dimden"
/>
</a>
<a href="https://nekoweb.org/">
<img
alt="Nekoweb"
src="https://nekoweb.org/assets/buttons/button5.gif"
width="88"
height="31"
/>
</a>
<a href="https://districts.nekoweb.org/">
<img
alt="Nekoweb Districts"
src="https://districts.nekoweb.org/img/districts002.png"
height="31"
width="88"
/>
</a>
<a href="https://gen1x.is-a.dev/">
<img
alt="Gen1x/G1nx"
src="/buttons/Gen1x.webp"
height="31"
width="88"
/>
</a>
<a href="http://devilmayquake.com">
<img
alt="Ultrakill"
src="/buttons/UltrakillButton.webp"
height="31"
width="88"
/>
</a>
<a href="https://x.com/Garn47">
<img
alt="Garn47's Cool House"
src="/buttons/garn47scoolhouse.webp"
height="31"
width="88"
/>
</a>
<a href="https://kinggizzardandthelizardwizard.com/">
<img
alt="King Gizzard and the Lizard Wizard"
src="/buttons/Gizzard.webp"
height="31"
width="88"
/>
</a>
<a href="https://andreaborman2.blogspot.com/">
<img
alt="Andrea Sites."
src="/buttons/AndreaSites.webp"
width="88"
height="31"
/>
</a>
</div>
</div>
<h2>Webrings</h2>
<table class="ZeroGreatnessWebring">
<tr>
<td>
<a
href="https://steve0greatness.github.io/webring/sites/steve0greatness/prev.xhtml"
>Prev</a>
</td>
<td>
<a
href="https://steve0greatness.github.io/webring"
>
<img
src="0GreatnessWebring.png"
width="100"
height="42"
alt="0Greatness Webring"
/>
</a>
</td>
<td>
<a
href="https://steve0greatness.github.io/webring/sites/steve0greatness/next.xhtml"
>Next</a>
</td>
</tr>
</table>
<h2>Some other cool stuff</h2>
<iframe width="90" height="90" style="border:none" src="https://dimden.neocities.org/navlink/" name="neolink"></iframe>
<h1>Deprecated!</h1>
<p>I no longer use GitHub pages to distribute my website. In the future, please go to <a rel="me" href="https://steve0greatness.nekoweb.org/">steve0greatness.nekoweb.org</a>. Also, if you're subscribed to my blog using RSS, update that as well.</p>
<p>All links are kept here for historical purposes.</p>
{% endblock %}