106 lines
2.4 KiB
YAML
106 lines
2.4 KiB
YAML
# Site settings
|
|
title: Siphalor's Homepage # site title
|
|
description: >- # site description
|
|
The homepage of Siphalor - a software developer who does some Minecraft modding in his spare time.
|
|
You might also stumble upon projects made in Python or Rust.
|
|
lang: en-US # default lang
|
|
timezone: Europe/Berlin # set your timezone
|
|
image: assets/img/ogp.png # This image used for Open Graph more info https://ogp.me/
|
|
repo: https://gitea.siphalor.de/Siphalor/homepage # site repo [optional]
|
|
mode: dark # default theme "dark" | "light"
|
|
|
|
# Profile settings
|
|
author:
|
|
name: Siphalor # author name
|
|
bio: >- # tell to the world
|
|
Hi, I'm a software developer that focuses on modding the sandbox game <a href="https://en.wikipedia.org/wiki/Minecraft">Minecraft</a> in his spare time.
|
|
Therefore a lot of my projects are Java-based but I also occasionally do projects with Python, Rust or PHP (and the other web technologies).
|
|
username: Siphalor # general username
|
|
github: Siphalor # github username
|
|
twitter: Siphalor # twitter username
|
|
facebook: # facebook username
|
|
linkedin: johannes-f-siphalor # LinkedIn username
|
|
email: info@siphalor.de # email adress
|
|
avatar: /assets/img/avatar.jpg # change with your own avatar
|
|
|
|
# URL settings
|
|
url: "https://siphalor.de" #
|
|
baseurl:
|
|
permalink: /:title/
|
|
google_analytics: # leave it blank if not wish
|
|
fb_appid:
|
|
|
|
# Collection setting
|
|
collections_dir: collections
|
|
collections:
|
|
posts:
|
|
output: true
|
|
permalink: /posts/:title
|
|
mods:
|
|
output: true
|
|
permalink: /mods/:title
|
|
layout: mod
|
|
|
|
# Markdown settings
|
|
markdown: kramdown
|
|
highlighter: rouge
|
|
kramdown:
|
|
syntax_highlighter: rouge
|
|
|
|
# Default front matter
|
|
defaults:
|
|
- scope:
|
|
path: ""
|
|
values:
|
|
layout: post
|
|
comments: false
|
|
- scope:
|
|
path: ""
|
|
type: mods
|
|
values:
|
|
layout: mod
|
|
|
|
# Jekyll Compose default front matter
|
|
jekyll_compose:
|
|
post_default_front_matter:
|
|
modified:
|
|
tags: []
|
|
description:
|
|
draft_default_front_matter:
|
|
modified:
|
|
tags: []
|
|
description:
|
|
|
|
# Homepage limit posts
|
|
number_of_posts: 5
|
|
|
|
# Build settings
|
|
# theme: klise
|
|
sass:
|
|
style: compressed
|
|
|
|
include:
|
|
- _redirects
|
|
- .htaccess
|
|
|
|
exclude:
|
|
- CNAME
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
- LICENSE
|
|
- CHANGELOG.md
|
|
- README.md
|
|
- node_modules
|
|
- CODE_OF_CONDUCT.md
|
|
- CONTRIBUTING.md
|
|
- lighthouse.png
|
|
- klise-*.gem
|
|
- klise.gemspec
|
|
- vendor
|
|
|
|
# Plugins
|
|
plugins:
|
|
- jekyll-feed
|
|
- jekyll-sitemap
|
|
- jekyll-postfiles
|