Cheat Sheets
Octopress Cheat Sheet
Installation
- Download & Install
- Ruby 1.9.3-p550
- Devkit for Ruby 1.9.3
- Execute below commands
ruby dk.rb init- Enter the ruby home path in
config.ymlfile here ruby dk.rb reviewruby dk.rb install
- Python27
- Execute below commands
- Execute below commands from folder where Octopress GemFile is
gem install bundlerbundle installgem install hitimes -v '1.2.2'
Getting Started
gem update# updates all ruby gemsrake new_page[name]#To create a new page- How to start the local server
rake generate# generates the static siterake preview# starts server on localhost:4000
Site changes
http://octopress.org/docs/theme/styles/
- To override styles
sass/custom/_styles.scss - To change colors in the site
/sass/base/_theme.scss - To customize your color scheme edit
sass/custom/_colors.scssand override the colors insass/base/_theme.scss. - To change fonts
/source/_includes/custom/head.html - To change header
/source/_includes/custom/header.html - To change sidebar edit
default_asidessection in_config.yml - To change navigation
/source/_includes/custom/navigation.html - To change navigation link on the side bar
/source/_includes/asides/recent_posts.html
Github commands
To clone the site to a new machine
1 2 3 4 | |
To deploy the Octopress site to Github. Note the source files go to source branch and the static site to be hosted goes to master branch.
1 2 3 4 5 | |
To update the changes from remote
1 2 3 4 | |