From f69a716d933191211f81c39400a2257667b8f157 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Balter" Date: Sat, 13 Apr 2013 14:09:58 -0400 Subject: [PATCH] Update quickstart instructions with `new` command Quickstart instructions as written would serve an empty directory. They instruct the user to install Jekyll (:metal), `cd` to a directory that may not exist, and then run `jekyll serve` (:hurtrealbad:). Instead, lets have them run `jekyll new` to stand up a scaffold site, so they can see how things work and poke around a bit. It's one more command, but IMHO a better user experience for someone just getting started. --- site/index.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/site/index.html b/site/index.html index c0a35828..4cc8917b 100644 --- a/site/index.html +++ b/site/index.html @@ -49,10 +49,15 @@ overview: true

~ $ - cd my/awesome/site + jekyll new my-awesome-site

- ~/my/awesome/site + ~ + $ + cd my-awesome-site +

+

+ ~/my-awesome-site $ jekyll serve