Skip to content

Commit 07651e3

Browse files
committed
Setup initial wiki articles
1 parent 7e2129d commit 07651e3

File tree

8 files changed

+87
-2
lines changed

8 files changed

+87
-2
lines changed

src/pages/posts/wiki-1-creator.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: ../../layouts/MarkdownPostLayout.astro
3+
title: 'The Creator'
4+
pubDate: '2025-08-05'
5+
description: 'Who is the creator of the universe?'
6+
author: 'Jackson Sardello'
7+
---
8+
9+
In My Universe, the creator of all existence is a singular supreme being. Referred to as "The Creator" by his creations, he is also known as (capitol G) God to deliniate him from the pantheon of (little g) gods.
10+
11+
The Creator is said to be omnipotent, omniscient, and omnipresent. But in the present day, his defining characteristic is his absence. Shortly after creating the universe and awakening the first of the Pantheon, The Creator ascended and the universe has not felt his touch since.
12+
13+
## The Creation Moment
14+
15+
In the beginning, there was <a href="/posts/wiki-2-the-void">the Void</a>. An infinite expanse of nothingness. More than nothingness, it is an anti-ness. The complete opposite of a created thing. The Void is not a place, it is a state of being. It is the absence of existence. From this raw material, the Creator divided The Void into 255 Realms, distinct planes of existence that are separated from one another by a buffer of Void. Even after this separation, most Realms are majority-filled with Void. The Creator focused most of his power of Making onto 14 different realms. 7 are The Mortal Realms, and the other 7 are The Divine Realms.
16+
17+
In that moment of creation, The Mortal Realms were filled with the infinite vaccumm of space. Trillions stars, planets and other celestial bodies were sent spinning out into space much like we concieve the Big Bang to have taken place in our own universe. From that genesis point, the River of Magic began. Magic started flowing among the stars twisting itself around matter and suffusing the universe with a chaotic flow of magical energy.
18+
19+
The Divine Realms are finite in comparison. The Creator sculpted out a measurable and fixed amount of Void and filled it completely with matter. There is no space vaccum in the Divine Realms. Matter presses right up to the barrier of Void. The measurement of the width of the Divine Realms is known as the "Central Finite Curve". Interestingly, this measurement seems to have a reflective property on The Mortal Realms. The vast majority of stars, planets, and life reside within the Central Finite Curve.
20+
21+
## The Awakening of the Pantheon
22+
23+
The Pantheon

src/pages/posts/wiki-2-void.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: ../../layouts/MarkdownPostLayout.astro
3+
title: 'The Creator'
4+
pubDate: '2025-08-05'
5+
description: 'Who is the creator of the universe?'
6+
author: 'Jackson Sardello'
7+
---
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: ../../layouts/MarkdownPostLayout.astro
3+
title: 'The Creator'
4+
pubDate: '2025-08-05'
5+
description: 'Who is the creator of the universe?'
6+
author: 'Jackson Sardello'
7+
---
8+
9+
# The Mortal Realms
10+
11+
The Mortal Realms are 7 "mirror realms" that contain the vast majority of life in the known universe. Each Realm share the following characteristics:
12+
- No Void - The Mortal Realms are an infinite expanse of the vaccum of space. No Void exists except as a separating barrier between each Realm.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: ../../layouts/MarkdownPostLayout.astro
3+
title: 'The Creator'
4+
pubDate: '2025-08-05'
5+
description: 'Who is the creator of the universe?'
6+
author: 'Jackson Sardello'
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: ../../layouts/MarkdownPostLayout.astro
3+
title: 'The Creator'
4+
pubDate: '2025-08-05'
5+
description: 'Who is the creator of the universe?'
6+
author: 'Jackson Sardello'
7+
---

src/pages/stories.astro

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
import BaseLayout from '../layouts/BaseLayout.astro';
3+
4+
const pageTitle = "Stories";
5+
6+
---
7+
<BaseLayout pageTitle={pageTitle}>
8+
<body>
9+
10+
<p></p>
11+
12+
</body>
13+
</BaseLayout>

src/pages/wiki.astro

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
import BaseLayout from '../layouts/BaseLayout.astro';
3+
4+
const pageTitle = "Wiki";
5+
6+
---
7+
<BaseLayout pageTitle={pageTitle}>
8+
<body>
9+
10+
<ul>
11+
<li><a href="/Worldbuilding-Wiki/posts/wiki-1-creator/">The Creator</a></li>
12+
</ul>
13+
14+
</body>
15+
</BaseLayout>

src/styles/global.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ h1 {
3232
font-size: 2.5rem;
3333
font-family: 'League Gothic Condensed', sans-serif;
3434
}
35-
p {
35+
p, h2, h3 {
3636
font-family: 'Spectral', serif;
3737
}
3838

@@ -52,6 +52,7 @@ body {
5252
display: flex;
5353
justify-content: center;
5454
margin: 0;
55+
border-bottom: 1px solid black;
5556
}
5657

5758
.nav-links a {
@@ -76,7 +77,7 @@ body {
7677
display: flex;
7778
justify-content: center;
7879
background: none;
79-
gap: 40px;
80+
gap: 70px;
8081
}
8182

8283
.nav-links a {

0 commit comments

Comments
 (0)