Skip to content

Commit

Permalink
Update wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
Nereare committed Nov 2, 2024
1 parent 2d2922e commit 6867bf8
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 15 deletions.
1 change: 0 additions & 1 deletion docs/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ group :jekyll_plugins do
gem "jekyll-github-metadata"
gem "jekyll-feed"
gem "jekyll-seo-tag"
gem "jekyll-spaceship"
end

platforms :mingw, :x64_mingw, :mswin, :jruby do
Expand Down
6 changes: 0 additions & 6 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,6 @@ GEM
jekyll (>= 3.8, < 5.0)
jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0)
jekyll-spaceship (0.5.3)
jekyll (>= 3.6, < 5.0)
nokogiri (~> 1.6)
rainbow (~> 3.0)
jekyll-swiss (1.0.0)
jekyll-theme-architect (0.2.0)
jekyll (> 3.5, < 5.0)
Expand Down Expand Up @@ -245,7 +241,6 @@ GEM
forwardable-extended (~> 2.6)
public_suffix (5.1.1)
racc (1.8.1)
rainbow (3.1.1)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
Expand Down Expand Up @@ -285,7 +280,6 @@ DEPENDENCIES
jekyll-feed
jekyll-github-metadata
jekyll-seo-tag
jekyll-spaceship
jekyll-theme-minimal
tzinfo (>= 1, < 3)
tzinfo-data
Expand Down
3 changes: 2 additions & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ show_downloads: false
collections:
history:
output: true
gods:
output: true

plugins:
- jekyll-github-metadata
- jekyll-seo-tag
- jekyll-feed
- jekyll-spaceship

exclude:
- .sass-cache/
Expand Down
6 changes: 6 additions & 0 deletions docs/_gods/hecate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Hecate
layout: default
---

Foo bar
16 changes: 16 additions & 0 deletions docs/_gods/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: Gods
layout: default
is_index: true
permalink: /gods/
---

{% if site.gods.size > 1 %}
{% for article in site.gods %}
{% unless article.is_index %}
- [{{ article.title }}](article.url)
{% endunless %}
{% endfor %}
{% else %}
Not subarticles under this topic.
{% endif %}
14 changes: 8 additions & 6 deletions docs/_history/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ is_index: true
permalink: /history/
---

## History

The current events of Minesdeep occur during its 11th age of the Dragons, the 5th age of the Elves and the 2nd age of Men.

## Mythic Age
### Mythic Age

| Year | Event |
| :----: | :------------------------- |
Expand All @@ -20,7 +22,7 @@ The current events of Minesdeep occur during its 11th age of the Dragons, the 5t
| ^^ | Formation of God's Council |
| ~950Ga | Non-Sentient Life |

## First Age
### First Age

All ages and years henceforth will abide by Draconic standards. Non-Draconic years and ages will be noted where applicable.

Expand Down Expand Up @@ -55,7 +57,7 @@ All ages and years henceforth will abide by Draconic standards. Non-Draconic yea
| 7.891 | 1.640SA | Second Draconic Aliance |
| ^^ | ^^ | War of Tears Begins |

### War of Tears
#### War of Tears

During this war, two fronts battled: Dragons (with pseudodragons, hordes of devils, some demons, scattered fae, and recently created monstrosities) against Gods (with angels). The recently discovered - but already mastered - Epic Magic the Dragons could wield laid waste to the armies of lesser gods and angels.

Expand All @@ -65,7 +67,7 @@ Dragons harbored a growing resentment towards the Gods for allowing them to die,

The war ended as the Gods agreed to ascend Dragons to immortalhood as well.

## Second Age
### Second Age

| Year | Angelic Year | Event |
| :---: | :----------: | :----------------------------- |
Expand All @@ -77,13 +79,13 @@ The war ended as the Gods agreed to ascend Dragons to immortalhood as well.
| ^^ | ^^ | Epic Magic Looses Strength |
| 2.310 | 2.310TA | Founding of Decamvirate |

### Hecate
#### Hecate

A Greater God born after much of History had happened.

While scholars hold her as **born** from nothing in 1.291 of the Second Draconic Age, some believe her existing since the begining of History, and hiding Herself from even the other Gods up until then.

### Decumvirate
#### Decumvirate

Now immortal, Dragons were faced with an endless life and a renewed breath of civilization.

Expand Down
14 changes: 13 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,19 @@ Here you will find information regarding the universe in which Minesdeep resides
{% if site.history.size > 1 %}
{% for article in site.history %}
{% unless article.is_index %}
- [{{ article.title }}](article.url)
- [{{ article.title }}]({{article.url}})
{% endunless %}
{% endfor %}
{% else %}
Not subarticles under this topic.
{% endif %}

## [Gods](gods/)

{% if site.gods.size > 1 %}
{% for article in site.gods %}
{% unless article.is_index %}
- [{{ article.title }}]({{article.url}})
{% endunless %}
{% endfor %}
{% else %}
Expand Down

0 comments on commit 6867bf8

Please sign in to comment.