-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finish switch back to leap-day format
Signed-off-by: Jason Ray <[email protected]>
- Loading branch information
Showing
1 changed file
with
22 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,109 +1,34 @@ | ||
# Welcome to Jekyll! | ||
# | ||
# This config file is meant for settings that affect your whole blog, values | ||
# which you are expected to set up once and rarely edit after that. If you find | ||
# yourself editing this file very often, consider using Jekyll's data files | ||
# feature for the data you need to update frequently. | ||
# | ||
# For technical reasons, this file is *NOT* reloaded automatically when you use | ||
# 'bundle exec jekyll serve'. If you change this file, please restart the server process. | ||
title: pulpo-messaging | ||
description: light weight job framework | ||
|
||
# Site settings | ||
# These are used to personalize your new site. If you look in the HTML files, | ||
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. | ||
# You can create any custom variable you would like, and they will be accessible | ||
# in the templates via {{ site.myvariable }}. | ||
title: "pulpo-messaging" | ||
email: | ||
description: "lightweight framework for handling distributed delayed job processing. This can be useful for any background jobs that you need within your system" | ||
google_analytics: G-B941W3153Q | ||
|
||
# Analytics | ||
analytics: | ||
provider : google-gtag # false (default), "google", "google-universal", "google-gtag", "custom" | ||
google: | ||
tracking_id : G-B941W3153Q | ||
anonymize_ip : # true, false (default) | ||
|
||
|
||
twitter_username: jayraynet | ||
github_username: jasonray | ||
# preview of skins: https://mmistakes.github.io/minimal-mistakes/docs/configuration/#skin | ||
minimal_mistakes_skin: "air" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise" | ||
search: true | ||
|
||
lunr: | ||
search_within_pages: true | ||
plugins: | ||
- jekyll-remote-theme | ||
- jekyll-sitemap | ||
|
||
# Build settings | ||
markdown: kramdown | ||
remote_theme: mmistakes/minimal-mistakes | ||
# Outputting | ||
permalink: /:categories/:title/ | ||
paginate: 5 # amount of posts to show | ||
paginate_path: /page:num/ | ||
timezone: EDT # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones | ||
|
||
breadcrumbs: true | ||
### leap day | ||
remote_theme: pages-themes/[email protected] | ||
# show_downloads: false | ||
|
||
include: | ||
- _pages | ||
|
||
# Exclude from processing. | ||
# The following items will not be processed, by default. Create a custom list | ||
# to override the default setting. | ||
# exclude: | ||
# - Gemfile | ||
# - Gemfile.lock | ||
# - node_modules | ||
# - vendor/bundle/ | ||
# - vendor/cache/ | ||
# - vendor/gems/ | ||
# - vendor/ruby/ | ||
|
||
# Plugins (previously gems:) | ||
plugins: | ||
- jekyll-paginate | ||
- jekyll-sitemap | ||
- jekyll-gist | ||
- jekyll-feed | ||
- jemoji | ||
- jekyll-include-cache | ||
- jekyll-seo-tag | ||
|
||
### just the docs | ||
# https://just-the-docs.github.io/just-the-docs/ | ||
# https://github.com/pmarsceill/jtd-remote/blob/master/_config.yml | ||
# remote_theme: just-the-docs/just-the-docs | ||
# color_scheme: light | ||
# search_enabled: false | ||
# callouts: | ||
# warning: | ||
# title: Warning | ||
# color: red | ||
|
||
author: | ||
name : "Mighty Pulpo" | ||
avatar : "/assets/images/greybeard.png" | ||
bio : "sometimes brilliant often a slacker... living the life of a burned out hacker" | ||
links: | ||
- label: "Website" | ||
icon: "fas fa-fw fa-link" | ||
url: "https://www.jayray.net/" | ||
- label: "GitHub" | ||
icon: "fab fa-fw fa-github" | ||
url: "https://github.com/jasonray" | ||
|
||
footer: | ||
links: | ||
- label: "Website" | ||
icon: "fas fa-fw fa-link" | ||
url: "https://www.jayray.net/" | ||
- label: "GitHub" | ||
icon: "fab fa-fw fa-github" | ||
url: "https://github.com/jasonray" | ||
|
||
defaults: | ||
# _pages | ||
- scope: | ||
path: "_pages" | ||
type: pages | ||
values: | ||
layout: single | ||
author_profile: true | ||
# github: | ||
# zip_url: http://example.com/download.zip | ||
# another_url: another value | ||
|
||
category_archive: | ||
type: liquid | ||
path: /categories/ | ||
tag_archive: | ||
type: liquid | ||
path: /tags/ |