64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
# Site settings
|
|
title: nicojensen.de · by Nico Jensen
|
|
owner: Nico Jensen
|
|
email: mail@njensen.org
|
|
description: > # this means to ignore newlines until "baseurl:"
|
|
A webseite about Nico Jensen's life, photografie and a lot of stupid stuff
|
|
baseurl: ""
|
|
url: "https://nicojensen.de"
|
|
|
|
# Build settings
|
|
markdown: kramdown
|
|
|
|
include: [".htaccess"]
|
|
include: [".well-known"]
|
|
|
|
exclude:
|
|
- vendor
|
|
- source # Don't include the original photos directory
|
|
- node_modules # Apparently this is magic sauce to make Jekyll less super slow
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
- gulpfile.js
|
|
- package.json
|
|
- "*~"
|
|
- "#*#"
|
|
- GPL.txt # No need for this to be in the site. LICENSE.md is, but not linked anywhere
|
|
|
|
keep_files:
|
|
- photo # Don't clobber the photo exports directory
|
|
- css # Don't clobber site CSS, this way I don't have to store compiled CSS
|
|
- js # Don't clobber site JS, which is built with Gulp and includes Photoswipe
|
|
- gfx # Don't clobber site graphics/images/assets
|
|
- favicon*
|
|
|
|
# Use the ingenuitive "compress.html" HTML minification template from
|
|
# https://github.com/penibelst/jekyll-compress-html
|
|
compress_html:
|
|
clippings: [div, ul, section]
|
|
comments: all
|
|
endings: []
|
|
ignore:
|
|
envs: [local]
|
|
blanklines: false
|
|
profile: false
|
|
startings: []
|
|
|
|
defaults:
|
|
- scope:
|
|
type: "posts"
|
|
values:
|
|
layout: "default"
|
|
|
|
paginate: 5
|
|
paginate_path: "/page/:num/"
|
|
permalink: /:year/:month/:day/:title/
|
|
|
|
mastodon:
|
|
username: nyansen
|
|
instance: elbmatsch.de
|
|
|
|
plugins:
|
|
- jekyll-sitemap
|
|
- jekyll-paginate
|
|
- jekyll/mastodon_webfinger
|