diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-19 18:48:02 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-19 18:48:02 -0400 |
commit | 6a149ea30242d58b9b872a119323af0ac0dfa06d (patch) | |
tree | 499d7ed38591c456b1ecdb9b98ccbef7ad3d011f | |
parent | 6f646e7290114721a1b4d6b49f25496ad8d7ca7e (diff) | |
download | my_new_personal_website-6a149ea30242d58b9b872a119323af0ac0dfa06d.tar.xz my_new_personal_website-6a149ea30242d58b9b872a119323af0ac0dfa06d.zip |
Updated Readme with latest instructions
Diffstat (limited to '')
-rw-r--r-- | README.markdown | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/README.markdown b/README.markdown index a08d2790..d339b00c 100644 --- a/README.markdown +++ b/README.markdown @@ -39,7 +39,7 @@ Install the default Octopress theme, and you should be all set up to begin blogging with Octopress. -### Generating & Preview +### Generate & Preview rake generate # Generates your blog into the public directory rake watch # Watches files for changes and regenerates your blog @@ -57,16 +57,18 @@ Now that you're setup with POW, you'll just run `rake watch` and load up `http:/ Create your first post. - rake post['hello world'] + rake new_post["hello world"] -This will put a new post in source/_posts with a name like like `2011-07-3-hello-world.markdown` in the `source/_posts` directory. +This will put a new post with a name like like `2011-07-3-hello-world.markdown` in the `source/_posts` directory. Open that file in your favorite text editor and you'll see a block of [yaml front matter](https://github.com/mojombo/jekyll/wiki/yaml-front-matter) which tells Jekyll how to processes posts and pages. --- - title: Hello World - date: 2011-07-03 5:59 layout: post + title: "Hello World" + date: 2011-07-03 5:59 + comments: true + categories: --- Now beneath the yaml block, go ahead and type up a sample post, or use some [inspired filler](http://baconipsum.com/). If you're running the watcher, save and refresh your browser and you |