64 lines
1.1 KiB
YAML
64 lines
1.1 KiB
YAML
url: "https://hackmarine.com" # the base hostname & protocol for your site
|
|
baseurl: "" # the subpath of your site, e.g. /blog
|
|
title: "Hackmarine" # the name of your site
|
|
description: "Open source technology solutions for sailboats and liveaboards"
|
|
email: "contact@hackmarine.com"
|
|
author: "Hackmarine Team"
|
|
|
|
# Build settings
|
|
markdown: kramdown
|
|
permalink: pretty
|
|
|
|
# Collections
|
|
collections:
|
|
projects:
|
|
output: true
|
|
permalink: /projects/:path/
|
|
|
|
# Default front matter
|
|
defaults:
|
|
-
|
|
scope:
|
|
path: ""
|
|
type: "posts"
|
|
values:
|
|
layout: "post"
|
|
author: "Hackmarine Team"
|
|
-
|
|
scope:
|
|
path: ""
|
|
type: "projects"
|
|
values:
|
|
layout: "project"
|
|
author: "Hackmarine Team"
|
|
|
|
# Plugins
|
|
plugins:
|
|
- jekyll-postcss
|
|
- jekyll-feed
|
|
- jekyll-sitemap
|
|
- jekyll-seo-tag
|
|
|
|
# Sass settings
|
|
sass:
|
|
sourcemap: never
|
|
|
|
# PostCSS settings
|
|
postcss:
|
|
cache: false
|
|
|
|
# Exclude files from processing
|
|
exclude:
|
|
- .gitignore
|
|
- bin
|
|
- node_modules
|
|
- package-lock.json
|
|
- postcss.config.js
|
|
- README.md
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
|
|
# Keep files in _site
|
|
keep_files:
|
|
- assets/css/tailwind.css
|
|
- assets/css/tailwind.css.map |