init
This commit is contained in:
commit
c021228161
24 changed files with 1509 additions and 0 deletions
76
sites/jekyll-source/_config.yml
Normal file
76
sites/jekyll-source/_config.yml
Normal file
|
@ -0,0 +1,76 @@
|
|||
# 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"
|
Loading…
Add table
Add a link
Reference in a new issue