Illuvia-Prime/_config.yml
Florian Weber ff1e9ce628
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m5s
Fix: WebP conversion by manually convert webp images
2025-01-11 20:07:41 +01:00

82 lines
2.4 KiB
YAML

title: Illuvia Prime
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.
theme: just-the-docs
content:
pack_version: PACK_VERSION
minecraft_version: MINECRAFT_VERSION
baseurl: "/"
url: "https://illuvia.world"
show_downloads: false
# 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
############################################################