-
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 dependencies for enhanced functionali…
…ty and theme customization
- Loading branch information
1 parent
e5fe0ea
commit 32c0ad6
Showing
2 changed files
with
56 additions
and
34 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,20 +1,10 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gem "github-pages", group: :jekyll_plugins | ||
gem "just-the-docs" | ||
|
||
group :jekyll_plugins do | ||
gem "jekyll-seo-tag" | ||
gem "jekyll-feed" | ||
end | ||
|
||
# Windows and JRuby does not include zoneinfo files | ||
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 | ||
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] | ||
gem "jekyll-seo-tag" | ||
gem "jekyll-remote-theme" | ||
end |
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,27 +1,58 @@ | ||
title: Daniel Butler | ||
description: Automation Engineer at IBM Cloud | Making Cloud Development Easier | ||
baseurl: "/docs" | ||
url: "https://daniel-butler-irl.github.io" | ||
url: "https://dbdev.ie" | ||
baseurl: "" | ||
|
||
# Theme settings | ||
remote_theme: pages-themes/[email protected] | ||
plugins: | ||
- jekyll-remote-theme | ||
- jekyll-feed | ||
- jekyll-seo-tag | ||
remote_theme: just-the-docs/just-the-docs | ||
|
||
# Color scheme | ||
color_scheme: dark | ||
|
||
# Enable or disable heading anchors | ||
heading_anchors: true | ||
|
||
# Footer content | ||
footer_content: "Copyright © 2024 Daniel Butler. Distributed by an MIT license." | ||
|
||
# Enable or disable back to top button | ||
back_to_top: true | ||
back_to_top_text: "Back to top" | ||
|
||
# Author information | ||
author: | ||
name: Daniel Butler | ||
email: [email protected] | ||
github: daniel-butler-irl | ||
linkedin: daniel-butler-1a525832 | ||
# Google Analytics | ||
ga_tracking: UA-XXXXXXXXX-X | ||
ga_tracking_anonymize_ip: true | ||
|
||
# Build settings | ||
markdown: kramdown | ||
kramdown: | ||
input: GFM | ||
syntax_highlighter: rouge | ||
# Collections | ||
collections: | ||
projects: | ||
output: true | ||
permalink: /projects/:path/ | ||
|
||
# Search | ||
search_enabled: true | ||
search: | ||
heading_level: 2 | ||
previews: 3 | ||
preview_words_before: 5 | ||
preview_words_after: 10 | ||
tokenizer_separator: /[\s/]+/ | ||
rel_url: true | ||
button: true | ||
|
||
# Aux links for the upper right navigation | ||
aux_links: | ||
"VS Code IBM Catalog Editor": | ||
- "https://github.com/daniel-butler-irl/VS_Code_Catalog_Json_Editor" | ||
"GitHub Profile": | ||
- "https://github.com/daniel-butler-irl" | ||
|
||
# Makes Aux links open in a new tab | ||
aux_links_new_tab: true | ||
|
||
plugins: | ||
- jekyll-seo-tag | ||
- jekyll-remote-theme | ||
|
||
# Exclude from processing | ||
exclude: | ||
|
@@ -31,4 +62,5 @@ exclude: | |
- vendor/bundle/ | ||
- vendor/cache/ | ||
- vendor/gems/ | ||
- vendor/ruby/ | ||
- vendor/ruby/ | ||
|