73 lines
1.2 KiB
YAML
73 lines
1.2 KiB
YAML
# Site settings
|
|
title: SweeBlogs # site title
|
|
description: >- # site description
|
|
A small community of writing tech blogs!
|
|
lang: en-US # default lang
|
|
timezone: America/Los_Angeles # set your timezone
|
|
mode: dark # default theme "dark" | "light"
|
|
|
|
# URL settings
|
|
url: "https://blogs.swee.codes" #
|
|
baseurl:
|
|
permalink: /:title/
|
|
future: true
|
|
|
|
# Collection setting
|
|
collections:
|
|
posts:
|
|
output: true
|
|
|
|
# Markdown settings
|
|
markdown: kramdown
|
|
highlighter: rouge
|
|
kramdown:
|
|
syntax_highlighter: rouge
|
|
|
|
# Default front matter
|
|
defaults:
|
|
- scope:
|
|
path: ""
|
|
values:
|
|
layout: post
|
|
comments: false
|
|
|
|
# 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:
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
- LICENSE
|
|
- README.md
|
|
- node_modules
|
|
- CONTRIB.md
|
|
|
|
# Plugins
|
|
plugins:
|
|
- jekyll-feed
|
|
- jekyll-sitemap
|
|
- jekyll-postfiles
|
|
- jekyll-last-modified-at
|
|
|
|
last-modified-at:
|
|
date-format: 'Last updated at %B %d, %Y at %I:%M %p UTC%:::z'
|