Compare commits

...

28 Commits

Author SHA1 Message Date
7b34912f6f
Remove version section header from homepage
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 7m52s
2025-05-24 23:15:26 +02:00
93dc43c788
Fix: Update git add command to stage all changes in deployment workflow
Some checks are pending
Deploy Jekyll site to Pages / build (push) Has started running
2025-05-24 23:14:40 +02:00
64a31ec76e
Update: Adjust deployment schedule to every 12 hours and improve Ruby setup process
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 3m1s
2025-05-24 23:10:08 +02:00
9c989d870d
Update: Replace version text with badge images for better visibility
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 2m59s
2025-05-24 23:05:54 +02:00
1fe2ea2a04
Added: Preserved and versioned current illuvia logos
Some checks are pending
Deploy Jekyll site to Pages / build (push) Has started running
2025-01-12 00:06:53 +01:00
f49cdfa3e7
Update: Fully switched to webp images 2025-01-12 00:06:22 +01:00
ff1e9ce628
Fix: WebP conversion by manually convert webp images
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m5s
2025-01-11 20:07:41 +01:00
f076c22605
Next try to fix webp conversion
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 4m33s
2025-01-11 19:55:47 +01:00
7d6b7cb357
Traying to fix webp conversion
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m23s
2025-01-11 19:35:58 +01:00
83acc66a3a
Fixed description to match Modrinth install 2025-01-11 19:35:40 +01:00
d7c320e1ba
Moved images to assets directory 2025-01-11 19:35:17 +01:00
2e09e32dd2
Added backpack keybinding description 2025-01-11 19:34:50 +01:00
615624593d
Fixed: last deployment step
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m32s
2025-01-11 16:16:13 +01:00
9d44b54617
Fixed missing timestamp for date in motd
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 4m23s
2025-01-11 16:10:32 +01:00
2ef51148c4
Deploy motd for custom modpack menu screen
Some checks failed
Deploy Jekyll site to Pages / build (push) Has been cancelled
2025-01-11 16:08:27 +01:00
3040953b6e
Scheduled deployment for updating pack and game version
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 4m31s
2025-01-11 11:59:15 +01:00
88d838d981
Fixed workflow syntax
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m49s
2025-01-11 11:35:48 +01:00
a0988516d4
Dynamic modrinth version fetching
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 33s
2025-01-11 11:29:58 +01:00
78410cfa4b Update: Installation Instructions
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m33s
2025-01-10 19:45:22 +01:00
7da7286126
Added status badged
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m26s
2025-01-02 00:21:36 +01:00
f63f430a1f Update: Modpack file
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m35s
2025-01-01 23:03:50 +01:00
62058fbd0c
Fixed dead links
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m47s
2025-01-01 21:40:28 +01:00
122896699c
Added missing modpack file 2025-01-01 21:40:17 +01:00
8186bfe974
First release version
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m28s
2025-01-01 20:58:21 +01:00
a2574690f1
some basic changes 2024-12-29 21:57:07 +01:00
5045611a6b
Added custom domains
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m21s
2024-12-29 15:00:23 +01:00
9e2e1933da
fixed branch name for on push action
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 4m15s
2024-12-29 14:47:05 +01:00
0c0bcb915f
Added jekyll build and deploy 2024-12-29 14:44:32 +01:00
27 changed files with 500 additions and 37 deletions

2
.domains Normal file
View File

@ -0,0 +1,2 @@
illuvia.world
www.illuvia.world

View File

@ -0,0 +1,110 @@
name: Deploy Jekyll site to Pages
on:
push:
branches:
- master
# Runs every 3 hours to update pack and game version
schedule:
- cron: '0 */12 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
env:
RUBY_VERSION: "3.3.5"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y jq curl sed imagemagick wget tar build-essential zlib1g-dev gpg libmagickwand-dev webp
which cwebp
- name: Fetch Latest Modrinth Version
id: fetch_version
run: |
# Modrinth API Call
response=$(curl -s -H "Authorization: Bearer $MODRINTH_TOKEN" https://api.modrinth.com/v2/project/illuvia-prime-project/version)
# Extract latest release version
latest_release=$(echo "$response" | jq -cr '[.[] | select(.status == "listed" and .version_type == "release")] | sort_by(.date_published) | last')
if [ -z "$latest_release" ]; then
echo "No release version found"
exit 1
fi
# Extract version_number and game_versions
version_number=$(echo "$latest_release" | jq -r '.version_number')
game_version=$(echo "$latest_release" | jq -r '.game_versions[0]')
current_date=$(date +"%d.%m.%Y %H:%m")
echo "Latest version: $version_number (Minecraft $game_version) on $current_date"
# Output for next steps
echo "PACK_VERSION=$version_number" >> $GITHUB_ENV
echo "MINECRAFT_VERSION=$game_version" >> $GITHUB_ENV
echo "CURRENT_DATE=$current_date" >> $GITHUB_ENV
- name: Update _config.yml
run: |
# Replace placeholders
sed -i "s/PACK_VERSION/$PACK_VERSION/g" _config.yml
sed -i "s/MINECRAFT_VERSION/$MINECRAFT_VERSION/g" _config.yml
sed -i "s/PACK_VERSION/$PACK_VERSION/g" assets/launcher_motd.txt
sed -i "s/CURRENT_DATE/$CURRENT_DATE/g" assets/launcher_motd.txt
- name: Convert images to WebP
run: |
DIRECTORY=assets/img
OUTPUT_DIRECTORY=assets/img
mkdir -p $OUTPUT_DIRECTORY
for file in $DIRECTORY/*.{jpg,jpeg,png}; do
if [ -f "$file" ]; then
filename=$(basename -- "$file")
name="${filename%.*}"
cwebp "$file" -o "$OUTPUT_DIRECTORY/$name.webp"
fi
done
- name: checkout pages
uses: actions/checkout@v4
with:
ref: "pages"
path: "pages"
- name: Setup Ruby
run: |
apt-get update
apt-get install curl wget tar build-essential zlib1g-dev gpg -y
curl -sSL https://rvm.io/mpapis.asc | gpg --import -
curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
curl -sSL https://get.rvm.io | bash -s stable
source /etc/profile.d/rvm.sh
rvm mount -r https://git.morlana.online/api/packages/Morlana/generic/ruby-ubuntu-22.04-aarch64/$RUBY_VERSION/ruby-$RUBY_VERSION.tar.bz2
rvm use $RUBY_VERSION && ruby -v && gem -v
gem install bundler jekyll webrick
- name: Build with Jekyll
run: |
source /etc/profile.d/rvm.sh
rvm use $RUBY_VERSION && ruby -v && gem -v
bundle install
bundle exec jekyll build --destination pages
env:
JEKYLL_ENV: production
- name: push pages
run: |
cd pages
cp ../.domains ./.domains
git config user.name "${{ gitea.actor }}"
git config user.email ""${{ gitea.actor }}"@noreply.git.morlana.online"
git add .
git commit -m "jekyll build from Action ${GITHUB_SHA}"
git push

View File

@ -5,3 +5,7 @@ gem "jekyll", "~> 4.3.4" # installed by `gem jekyll`
gem "just-the-docs", "0.10.0" # pinned to the current release
# gem "just-the-docs" # always download the latest release
gem 'jekyll-default-layout'
gem 'jekyll-webp'

View File

@ -3,20 +3,24 @@ GEM
specs:
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
bigdecimal (3.1.8)
bigdecimal (3.1.9)
colorator (1.1.0)
concurrent-ruby (1.3.4)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.17.0-arm64-darwin)
ffi (1.17.0-x86_64-linux-gnu)
ffi (1.17.1-arm64-darwin)
ffi (1.17.1-x86_64-darwin)
ffi (1.17.1-x86_64-linux-gnu)
forwardable-extended (2.6.0)
google-protobuf (4.28.1-arm64-darwin)
google-protobuf (4.29.2-arm64-darwin)
bigdecimal
rake (>= 13)
google-protobuf (4.28.1-x86_64-linux)
google-protobuf (4.29.2-x86_64-darwin)
bigdecimal
rake (>= 13)
google-protobuf (4.29.2-x86_64-linux)
bigdecimal
rake (>= 13)
http_parser.rb (0.8.0)
@ -38,6 +42,8 @@ GEM
safe_yaml (~> 1.0)
terminal-table (>= 1.8, < 4.0)
webrick (~> 1.7)
jekyll-default-layout (0.1.5)
jekyll (>= 3.0, < 5.0)
jekyll-include-cache (0.2.1)
jekyll (>= 3.7, < 5.0)
jekyll-sass-converter (3.0.0)
@ -46,13 +52,14 @@ GEM
jekyll (>= 3.8, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
jekyll-webp (1.0.0)
just-the-docs (0.10.0)
jekyll (>= 3.8.5)
jekyll-include-cache
jekyll-seo-tag (>= 2.0)
rake (>= 12.3.1)
kramdown (2.4.0)
rexml
kramdown (2.5.1)
rexml (>= 3.3.9)
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.4)
@ -67,25 +74,30 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.3.7)
rouge (4.3.0)
rexml (3.4.0)
rouge (4.5.1)
safe_yaml (1.0.5)
sass-embedded (1.78.0-arm64-darwin)
google-protobuf (~> 4.27)
sass-embedded (1.78.0-x86_64-linux-gnu)
google-protobuf (~> 4.27)
sass-embedded (1.83.0-arm64-darwin)
google-protobuf (~> 4.28)
sass-embedded (1.83.0-x86_64-darwin)
google-protobuf (~> 4.28)
sass-embedded (1.83.0-x86_64-linux-gnu)
google-protobuf (~> 4.28)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
unicode-display_width (2.6.0)
webrick (1.8.1)
webrick (1.9.1)
PLATFORMS
arm64-darwin
x86_64-darwin-23
x86_64-linux-gnu
DEPENDENCIES
jekyll (~> 4.3.4)
jekyll-default-layout
jekyll-webp
just-the-docs (= 0.10.0)
BUNDLED WITH
2.5.9
2.6.2

View File

@ -1,11 +1,81 @@
title: Illuvia Prime
description: >-
Welcome to the official homepage and documentation for Illuvia Prime, our modded Minecraft server. Explore a unique blend of technical and magical mods that enhance your gameplay experience.
Willkommen bei der offiziellen Homepage und Dokumentation für den Illuvia Prime Minecraft Server. Erkunde eine einzigartige Welt voller Magie und technischer Möglichkeiten.
theme: just-the-docs
content:
pack_version: PACK_VERSION
minecraft_version: MINECRAFT_VERSION
baseurl: "/"
url: "https://illuvia.world"
show_downloads: false
aux_links:
Template Repository: https://github.com/just-the-docs/just-the-docs-template
# Color scheme currently only supports "dark", "light"/nil (default), or a custom scheme that you define
color_scheme: dark
callouts_level: quiet # or loud
callouts:
highlight:
color: yellow
info:
title: Info
color: blue
new:
title: Neu
color: green
note:
title: Notiz
color: purple
warning:
title: Warnung
color: red
nav_external_links:
- title: Impressum
url: https://legal.thephoenixdi.vision
hide_icon: false
opens_in_new_tab: true
plugins:
- jekyll-default-layout
- jekyll-webp
############################################################
# Site configuration for the WebP Generator Plugin
# The values here represent the defaults if nothing is set
webp:
enabled: false
# The quality of the webp conversion 0 to 100 (where 100 is least lossy)
quality: 75
# List of directories containing images to optimize, nested directories will only be checked if `nested` is true
# By default the generator will search for a folder called `/img` under the site root and process all jpg, png and tiff image files found there.
img_dir: ["/assets/img"]
# Whether to search in nested directories or not
nested: false
# add ".gif" to the format list to generate webp for animated gifs as well
formats: [".jpeg", ".jpg", ".png", ".tiff"]
# File extensions for animated gif files
gifs: [".gif"]
# Set to true to always regenerate existing webp files
regenerate: false
# Local path to the WebP utilities to use (relative or absolute)
# Omit or leave as nil to use the utilities shipped with the gem, override only to use your local install
# Eg : "/usr/local/bin/cwebp"
webp_path: "/usr/bin/cwebp"
# List of files or directories to exclude
# e.g. custom or hand generated webp conversion files
exclude: []
# append '.webp' to filename after original extension rather than replacing it.
# Default transforms `image.png` to `image.webp`, while changing to true transforms `image.png` to `image.png.webp`
append_ext: false
############################################################

5
_layouts/home.html Normal file
View File

@ -0,0 +1,5 @@
---
layout: default
---
{{ content }}

5
_layouts/page.html Normal file
View File

@ -0,0 +1,5 @@
---
layout: default
---
{{ content }}

0
assets/img/add_favicon Normal file
View File

BIN
assets/img/download_btn.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

BIN
assets/img/memory_rec.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

4
assets/launcher_motd.txt Normal file
View File

@ -0,0 +1,4 @@
Welcome to Illuvia Prime Modpack!
Latest version is PACK_VERSION
Make sure to join the Discord Server!
Text Last Updated CURRENT_DATE!

15
docs/faq/index.md Normal file
View File

@ -0,0 +1,15 @@
---
title: FAQ
layout: page
has_toc: false
---
# FAQ Seiten
## Modpack
- [Backpack per Shortcut öffnen]({% link docs/faq/open-backpack-by-keybinding.md %})
## Server
- [Wie lautet die Server IP?]({% link docs/faq/what-is-the-server-ip.md %})

View File

@ -0,0 +1,29 @@
---
title: Backpack öfnnen mit Keybinding
parent: FAQ
layout: page
---
# Backpack per Shortcut öffnen
Man kann sein Backpack in einen Accessoire Slot legen um so wertvollen Platz im Inventar zu sparen.
Damit man es dann öffnen kann muss man allerdings ein Keybinding / Shortcut festlegen.
## Keybinding / Shortcut festlegen
1. Drücke die `ESC`-Taste und öffne die Options (de: Optionen)
![Im Game Menü den Punkt Options öffnen](/assets/img/minecraft_game_menu.webp)
2. In den Optionen gehe in die Controls (de: Steuerung)
![In den Optionen den Punkt Controls öffnen](/assets/img/minecraft_controls.webp)
3. Suche per Suchleiste nach `backpack`, dort erscheinen drei Optionen. `Open Backpack` ist auf `B` festgelegt, welches allerdings mehrfach belegt wurde durch die vielen Mods.
![Suche nach backpack und setze eine neue Taste für Open Backpack](/assets/img/minecraft_keybindings_backpack.webp)
4. Klicke dort auf das `B`, anschließend kannst du eine Taste drücken mit der du dein Backpack öffnen willst, diese darf allerdings nicht schon belegt sein. Wir empfehlen `^`, welches du auf deiner Tastatur oben neben der `1` findest.
![Suche nach backpack und setze eine neue Taste für Open Backpack](/assets/img/minecraft_keybindings_backpack_keybind.webp)
5. Danach kannst du mit `Done` speichern und das Game Menü verlassen
## Backpack in den Accessoire Slot legen
1. Öffne dein Inventar (Default: `E`)
![Öffne den Accessoire Screen im Inventar](/assets/img/minecraft_open_accessoire.webp)
2. Dort musst du in den oberen drei Kategorien sein, dann ist der unterste Slot der Slot für dein Backpack. Du kannst diesen aber auch am Rucksack erkennen.
![Lege das Backpack in den Backpack Slot](/assets/img/minecraft_backpack_slot.webp)

View File

@ -0,0 +1,9 @@
---
title: Wie lautet die Server IP?
parent: FAQ
layout: page
---
# Wie lautet die Server IP?
`join.illuvia.world`

31
docs/modpack/index.md Normal file
View File

@ -0,0 +1,31 @@
---
title: Modpack
nav_order: 2
layout: page
---
# Illuvia Prime Modpack
{: .highlight }
![Aktuelle Version {{ site.content.pack_version }}](https://img.shields.io/badge/{{ site.content.pack_version }}-blue?style=flat-square&label=Aktuelle%20Version)
{: .note }
Unser Modpack ist nun über Modrinth erhältlich. Bitte stellt euch darauf ein, dass der Support für `Technical Electrical: Secret Schemes` damit nur noch vorübergehend ist.
Wir werden vorher nochmal über Discord und unsere Homepage über das Supportende informieren!
## Wieso das Illuvia Prime Modpack?
Wir haben den Server mit Technical Electrical gestartet. Aktuell unterstützen wir dieses auch noch allerdings haben wir beim Spielen auf dem Server so einige Ideen gehabt, wie man das Spielerlebnis noch verbessern könnte.
So haben wir viele weitere Mods gefunden und in unseren lokalen Instanzen hinzugefügt. Nun möchten wir euch auch davon profitieren lassen!
Unter anderem haben wir einen eigenen Server Voice Chat integriert, der unabhängig von Discord, Teamspeak und Co. funktioniert. So ist es möglich auch mal miteinander zu quatschen (zum Beispiel zum Handeln) selbst wenn man sich in unterschiedlichen Discord Channels oder Servern befindet.
## Installtion
1. Installiere dir den [Modrinth Launcher](https://modrinth.com/app)
2. Gehe in die `Settings` unter `Default instance options` und erhöhere den zugewiesenen RAM. Empfohlen ist ~8000 bei 16GB RAM und ~12000 bei 32GB und höher
![Empfohlen ist ~8000 bei 16GB RAM und ~12000 bei 32GB und höher](/assets/img/memory_rec.webp)
3. Downloade das [Illuvia Prime Pack](modrinth://mod/illuvia-prime-project)
![Über Download herunterladen](/assets/img/download_btn.webp)
![Download via Modrinth](/assets/img/download_via_modrinth.webp)
4. Und nach dem Download kann das Modpack gespielt werden. Viel Spaß! ;)

155
docs/modpack/modliste.md Normal file
View File

@ -0,0 +1,155 @@
---
title: Modliste
parent: Modpack
layout: page
---
# Installierte Mods
- [X] AI Improvements
- [X] AmbientSounds
- [X] Applied Mekanistics
- [X] BadOptimizations
- [X] BetterF
- [X] BetterThirdPerson
- [X] Controlling
- [X] Corgilib
- [X] CraterLib
- [X] CreativeCore
- [X] Cucumber
- [X] CustomWindowTitle
- [X] DistantHorizons
- [X] Emojiful
- [X] ExtremeReactors
- [X] GPUTape
- [X] GlitchCore
- [X] ImmediatelyFast
- [X] ImmersiveEngineering
- [X] Jade
- [X] KryptonFoxified
- [X] Ksyxis
- [X] LittleFrames
- [X] MRU
- [X] Mekanism
- [X] MekanismAdditions
- [X] MekanismGenerators
- [X] MekanismTools
- [X] Modern Dynamics
- [X] Modern Industrialization
- [X] MouseTweaks
- [X] MysticalAgradditions
- [X] MysticalAgriculture
- [X] NoChatReports
- [X] Not Enough Recipe Book
- [X] OctoLib
- [X] Oh The Biomes Weve Gone
- [X] Oh The Trees Youll Grow
- [X] OreExcavation
- [X] Patchouli
- [X] Powah
- [X] Searchables
- [X] SimpleRPC Universal
- [X] SmartBrainLib
- [X] Sounds
- [X] Statues
- [X] TerraBlender
- [X] The Undergarden
- [X] Totemic
- [X] TravelersTitles
- [X] Xaeros Minimap
- [X] XaerosWorldMap
- [X] YetAnotherConfigLib
- [X] YungsApi
- [X] ZeroCore
- [X] SecurityCraft
- [X] accessories cclayer
- [X] accessories
- [X] actuallyadditions
- [X] aewtlib
- [X] almostunified
- [X] appleskin
- [X] appliedenergistics
- [X] architectury
- [X] ars additions
- [X] ars ocultas
- [X] athena
- [X] azurelib neo
- [X] balm
- [X] better modlist
- [X] cme
- [X] cc tweaked
- [X] chisel
- [X] cloth config
- [X] collective
- [X] drippyloadingscreen
- [X] elevatorid
- [X] emi
- [X] enderio
- [X] entityculling
- [X] fancymenu
- [X] ferritecore
- [X] freecam
- [X] friendsandfoes
- [X] functionalstorage
- [X] geckolib
- [X] handcrafted
- [X] idle boost
- [X] industrialforegoing
- [X] iris
- [X] ironchest
- [X] jamlib
- [X] jei
- [X] konkrete
- [X] kotlinfor
- [X] libIPN
- [X] lootr
- [X] melody
- [X] mffs
- [X] modernfix
- [X] modonomicon
- [X] moreculling
- [X] notenoughanimations
- [X] occultism
- [X] open parties and claims
- [X] owo lib
- [X] packetfixer
- [X] PlasmoVoice
- [X] pneumaticcraft repressurized
- [X] polyeng
- [X] polylib
- [X] polymorph
- [X] prefab
- [X] radium
- [X] reeses sodium options
- [X] relics
- [X] resourcefulconfig
- [X] resourcefullib
- [X] servercore
- [X] shrink
- [X] skinlayersd
- [X] sodium
- [X] sound physics remastered
- [X] stellaris
- [X] tectonic
- [X] the bumblezone
- [X] theurgy
- [X] thingamajigs
- [X] titanium
- [X] toms trading network
- [X] travelersbackpack
- [X] utility belt
- [X] watermedia
- [X] waveycapes
- [X] waystones
# Installierte Resourcepacks
- [X] Faithful 64x
- [X] 3D Crops Revamped
- [X] PresenceFootsteps: Remastered Sounds
- [X] Visual Traveler's Title Biomes Addon
# Installierte Shader
- [X] Solas Shader
- [X] Complementary Shaders - Reimagined

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,35 +1,47 @@
---
title: Home
layout: home
nav_order: 1
description: "Willkommen bei der offiziellen Homepage und Dokumentation für den Illuvia Prime Minecraft Server. Erkunde eine einzigartige Welt voller Magie und technischer Möglichkeiten."
permalink: /
---
This is a *bare-minimum* template to create a Jekyll site that uses the [Just the Docs] theme. You can easily set the created site to be published on [GitHub Pages] the [README] file explains how to do that, along with other details.
# Illuvia Prime Homepage
{: .fs-9 }
If [Jekyll] is installed on your computer, you can also build and preview the created site *locally*. This lets you test changes before committing them, and avoids waiting for GitHub Pages.[^1] And you will be able to deploy your local build to a different platform than GitHub Pages.
Willkommen bei der offiziellen Homepage und Dokumentation für den Illuvia Prime Minecraft Server. Erkunde eine einzigartige Welt voller Magie und technischer Möglichkeiten.
{: .fs-6 .fw-300 }
More specifically, the created site:
{: .info }
![Status Badge](https://admin.morlana.online/api/badge/28/status?style=flat-square)
![Uptime Badge](https://admin.morlana.online/api/badge/28/uptime/72?labelSuffix=Std&style=flat-square)
![Ping Badge](https://admin.morlana.online/api/badge/28/ping/72?labelSuffix=Std&style=flat-square)
- uses a gem-based approach, i.e. uses a `Gemfile` and loads the `just-the-docs` gem
- uses the [GitHub Pages / Actions workflow] to build and publish the site on GitHub Pages
[Get started now](#getting-started){: .btn .btn-primary .fs-5 .mb-4 .mb-md-0 .mr-2 }
[Download Modpack](https://modrinth.com/modpack/illuvia-prime-project#download){: .btn .fs-5 .mb-4 .mb-md-0 }
Other than that, you're free to customize sites that you create with this template, however you like. You can easily change the versions of `just-the-docs` and Jekyll it uses, as well as adding further plugins.
---
[Browse our documentation][Just the Docs] to learn more about how to use this theme.
{: .highlight }
🎮 __Game:__ ![Minecraft {{ site.content.minecraft_version }}](https://img.shields.io/badge/{{ site.content.minecraft_version }}-darkgreen?style=flat-square&label=Minecraft)<br>
🔃 __Mod Loader:__ ![NeoForge 21.1.77](https://img.shields.io/badge/21.1.77-orange?style=flat-square&label=NeoForge)<br>
📦 __Modpack:__ ![Illuvia Prime {{ site.content.pack_version }}](https://img.shields.io/badge/{{ site.content.pack_version }}-blue?style=flat-square&label=Illuvia%20Prime)
To get started with creating a site, simply:
## Getting started
1. click "[use this template]" to create a GitHub repository
2. go to Settings > Pages > Build and deployment > Source, and select GitHub Actions
{: .info }
Du musst von einem Spieler bei der Serverleitung (SitirioTV | Justin, Kosmos | Florian) empfohlen werden.<br>
Die Serverleitung gibt dann dem Spieler, der dich empfohlen hat bescheid ob du aufgenommen wirst oder nicht.
If you want to maintain your docs in the `docs` directory of an existing project repo, see [Hosting your docs from an existing project repo](https://github.com/just-the-docs/just-the-docs-template/blob/main/README.md#hosting-your-docs-from-an-existing-project-repo) in the template README.
### Modpack Installation
----
1. Downloade und installiere [Modrinth](https://modrinth.com/app) als Launcher
2. Starte den Launcher und logge dich mit deinem Minecraft / Microsoft Account ein
3. Installiere das Illuvia Prime Modpack wie [hier]({% link docs/modpack/index.md %}) beschrieben
[^1]: [It can take up to 10 minutes for changes to your site to publish after you push the changes to GitHub](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll#creating-your-site).
### Server beitreten
[Just the Docs]: https://just-the-docs.github.io/just-the-docs/
[GitHub Pages]: https://docs.github.com/en/pages
[README]: https://github.com/just-the-docs/just-the-docs-template/blob/main/README.md
[Jekyll]: https://jekyllrb.com
[GitHub Pages / Actions workflow]: https://github.blog/changelog/2022-07-27-github-pages-custom-github-actions-workflows-beta/
[use this template]: https://github.com/just-the-docs/just-the-docs-template/generate
1. Bitte joine einmal dem Server. Es wird eine Meldung kommen, dass du nicht auf der Whitelist stehst.
2. Teile der Serverleitung über Discord deinen Minecraft Benutzernamen mit, damit wir dich auf Whitelist setzen können.
3. Warte auf eine Antwort und joine erneut sobald du aufgenommen wurdest.
4. Viel Spaß! 🥳