Skip to content

khanduri/khanduri.github.io

Repository files navigation

Destination for ...

My Blog

My Projects

  • List available here

Want to use this as a template for your blog?

Setup

  • git clone https://github.com/khanduri/khanduri.github.io.git
  • cd into the repo
  • ./_scripts/clean.sh
  • Setup your own repo on github (USERNAME.github.io)
  • add it as a remote repo
  • git push origin master

Usage

Prereqs

  • You'll need to install jekyll
  • gem install jekyll

Creating a new Post

  • jekyll serve .. Keep it running in a terminal
  • rake post title="A Title" [date="2012-02-09"] [tags=[tag1,tag2]] [category="category"]
  • A new file is created in the _post directory .. Edit it
  • Once ready .. Commit and push to master

Creating a new Page

  • jekyll serve .. Keep it running in a terminal
  • rake page name="about.html"
  • about.html would be creating in the top level directory .. Edit it
  • Once ready .. Commit and push to master