Modernize Jekyll infrastructure and update About page#9
Merged
Conversation
- Add GitHub Actions workflow for build, lint, and deploy (replaces Travis CI) - Switch to rbenv: add .ruby-version (3.3.4), remove .tool-versions - Replace scss_lint with stylelint (npm); add package.json and .stylelintrc.json - Add rexml and webrick to Gemfile for Ruby 3.3 - Add _plugins/ruby33_compat.rb for Liquid taint API on Ruby 3.2+ - Fix SCSS for older Sass (rgba in colors.scss; stylelint fixes in main/reset/syntax) - Remove .travis.yml; update README with rbenv and Pages deployment steps - Track Gemfile.lock and add node_modules to .gitignore Co-authored-by: Cursor <cursoragent@cursor.com>
… photo - Reordered footer social links: GitHub, LinkedIn, Mastodon, Bluesky, Dribbble, Instagram - Added LinkedIn (https://linkedin.com/in/garthdb) with official icon - Added Bluesky (https://bsky.app/profile/garthdb.com) with official butterfly logo - Removed Behance from social links - Widened desktop sidebar to 340px (from 300px) for better icon spacing - Adjusted footer icon size to 28px and margins to 4px in desktop view - Added profile_photo.jpg to About page with circular crop styling Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR modernizes the Jekyll site infrastructure to work with Ruby 3.3+ and GitHub Actions, replacing the deprecated Travis CI setup. It also updates the footer social links and About page.
Infrastructure Updates
.tool-versions) to rbenv (.ruby-version)scss_lintwith modernstylelint(npm-based)rexmlandwebrickto Gemfile (no longer bundled in Ruby 3.3+)_plugins/ruby33_compat.rbto shim removed taint methods for Liquid 4.0.3Gemfile.lockandpackage-lock.jsonto repoSite Updates
Files Changed
.github/workflows/jekyll.yml,.ruby-version,.stylelintrc.json,package.json,Gemfile.lock,package-lock.json,_plugins/ruby33_compat.rb,img/profile_photo.jpg.travis.yml,.scss-lint.yml,.tool-versionsGemfile,Rakefile,README.md,_includes/footer.html,about.md,.gitignore, CSS filesPost-Merge Steps
After merging, enable GitHub Actions for deployment:
The workflow will then build and deploy the site on every push to
main.Made with Cursor