rcdland.com
rcdland.com
New website for RCD Land Inc
Intructions on How to Use Jekyll
- Install Ruby (with DevKit) Run the installer:
✔ Check “Add Ruby to PATH”
✔ Select MSYS2 development toolchain when prompted
- Install Jekyll and Bundler Open Command Prompt or PowerShell and run:
“gem install jekyll bundler”
- Create a New Jekyll Site
jekyll new new-site cd new-site bundle install
-
Add _layouts and _includes folders for boilertemplate and header/footer template
-
‘assets’ folder should contain the following files source images, js scripts, and css styles.
-
Serve Your Site Locally Using:
“bundle exec jekyll serve”
Open your browser and go to: http://localhost:4000
Always include these files on gitignore:
- _site
- .sass-cache
- .jekyll-cache
- .jekyll-metadata
- vendor
- Gemfile.lock
Launching Jekyll in new branch:
- Open command prompt or powershell and run:
“bundle install” “bundle exec jekyll serve”