76 lines
1.7 KiB
YAML
76 lines
1.7 KiB
YAML
# Jekyll configuration with less-style-please theme
|
|
title: Motherfucking Blog
|
|
tagline: Sick of All the Shit
|
|
description: >-
|
|
Turning a joke into a self-hosted starter kit for motherfucking blogs.
|
|
url: ''
|
|
baseurl: ''
|
|
lang: en-US
|
|
timezone: UTC
|
|
|
|
# Author information
|
|
author:
|
|
name: Stewart Pidasso
|
|
email: stu[at][this-site].com
|
|
links:
|
|
- https://github.com/Steward-Pidasso
|
|
- https://twitter.com/username
|
|
|
|
# GitHub repository
|
|
repository: username/repo-name
|
|
|
|
# Jekyll settings
|
|
markdown: kramdown
|
|
highlighter: rouge
|
|
permalink: /:year/:month/:day/:title/
|
|
paginate: 10
|
|
|
|
# Plugins
|
|
plugins:
|
|
- jekyll-paginate
|
|
- jekyll-sitemap
|
|
- jekyll-feed
|
|
- jekyll-seo-tag
|
|
|
|
# Exclude files/folders
|
|
exclude:
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
- node_modules
|
|
- vendor
|
|
- _site
|
|
- .sass-cache
|
|
- .jekyll-cache
|
|
- gemfiles
|
|
- vendor/bundle/
|
|
- vendor/cache/
|
|
- vendor/gems/
|
|
- vendor/ruby/
|
|
|
|
jekyll_admin:
|
|
#You will likely need to change this depending on your template.
|
|
metadata:
|
|
_posts:
|
|
- name: "layout"
|
|
field:
|
|
element: "hidden" # Change from "text" to "hidden"
|
|
value: "post"
|
|
- name: "title"
|
|
field:
|
|
element: "text"
|
|
label: "Post title"
|
|
- name: "date" # Add this field
|
|
field:
|
|
element: "text"
|
|
label: "Date"
|
|
value: "CURRENT_DATETIME" # This will use the current date/time
|
|
- name: "categories"
|
|
field:
|
|
element: "text"
|
|
label: "Categories (comma-separated)"
|
|
placeholder: "category1, category2"
|
|
- name: "tags"
|
|
field:
|
|
element: "text"
|
|
label: "Tags (comma-separated)"
|
|
placeholder: "tag1, tag2"
|