- Jekyllrb.com
- Fancy-pants Jekyll cheat-sheet
- Modular Web Development, an in-progress eBook by Karl Stolley
Last active
September 22, 2021 13:30
-
-
Save karlstolley/0d5b8a036cb52f5b1a1d to your computer and use it in GitHub Desktop.
Fancy-pants Jekyll stuff
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
#_config.yml | |
exclude: [Gemfile, Gemfile.lock] | |
destination: ../pdemo-compiled |
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
# _plugins/bundler.rb | |
require 'rubygems' | |
require 'bundler/setup' | |
Bundler.require(:default) |
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
source 'http://rubygems.org' | |
gem 'jekyll-haml' # See https://github.com/samvincent/jekyll-haml | |
gem 'bootstrap-sass' # See https://github.com/twbs/bootstrap-sass |
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
#_plugins/haml.rb | |
Haml::Options.defaults[:attr_wrapper] = '"' | |
Haml::Options.defaults[:format] = :xhtml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment