-
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.
Update Jekyll configuration and workflows for improved deployment and…
… theme settings
- Loading branch information
1 parent
2706923
commit 3bbdb83
Showing
3 changed files
with
57 additions
and
23 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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
gem "jekyll-feed", "~> 0.12" | ||
gem "minima" | ||
|
||
group :jekyll_plugins do | ||
gem "jekyll-feed" | ||
gem "jekyll-seo-tag" | ||
end | ||
|
||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem | ||
# and associated library. | ||
platforms :mingw, :x64_mingw, :mswin, :jruby do | ||
gem "tzinfo", ">= 1" | ||
gem "tzinfo-data" | ||
end | ||
|
||
# Performance-booster for watching directories on Windows | ||
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] | ||
|
||
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem | ||
# do not have a Java counterpart. | ||
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] |
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 |
---|---|---|
|
@@ -3,11 +3,10 @@ description: Automation Engineer at IBM Cloud | Making Cloud Development Easier | |
url: "https://dbdev.ie" | ||
baseurl: "" | ||
|
||
# Build settings | ||
markdown: kramdown | ||
remote_theme: pages-themes/[email protected] | ||
# Theme settings | ||
theme: minima | ||
plugins: | ||
- jekyll-remote-theme | ||
- jekyll-feed | ||
- jekyll-seo-tag | ||
|
||
# Author information | ||
|
@@ -17,16 +16,36 @@ author: | |
github: daniel-butler-irl | ||
linkedin: daniel-butler-1a525832 | ||
|
||
# Navigation | ||
navigation: | ||
- title: About | ||
url: / | ||
- title: Projects | ||
url: /projects | ||
- title: Blog | ||
url: /blog | ||
# Build settings | ||
markdown: kramdown | ||
kramdown: | ||
input: GFM | ||
hard_wrap: false | ||
|
||
# Collections | ||
collections: | ||
projects: | ||
output: true | ||
permalink: /projects/:path/ | ||
|
||
# Defaults | ||
defaults: | ||
- scope: | ||
path: "" | ||
type: "posts" | ||
values: | ||
layout: "post" | ||
- scope: | ||
path: "" | ||
values: | ||
layout: "default" | ||
|
||
# Exclude from processing | ||
exclude: | ||
- Gemfile | ||
- Gemfile.lock | ||
- node_modules | ||
- vendor/bundle/ | ||
- vendor/cache/ | ||
- vendor/gems/ | ||
- vendor/ruby/ |