diff --git a/content-sample/index.md b/content-sample/index.md index 4eb0de6..7c258ea 100644 --- a/content-sample/index.md +++ b/content-sample/index.md @@ -9,27 +9,27 @@ Congratulations, you have successfully installed [Pico](http://picocms.org/). Pi ### Creating Content -Pico is a flat file CMS, this means there is no administration backend and database to deal with. You simply create `.md` files in the "content" +Pico is a flat file CMS, this means there is no administration backend and database to deal with. You simply create `.md` files in the "content-sample" folder and that becomes a page. For example, this file is called `index.md` and is shown as the main landing page. -If you create a folder within the content folder (e.g. `content/sub`) and put an `index.md` inside it, you can access that folder at the URL -`http://yoursite.com/sub`. If you want another page within the sub folder, simply create a text file with the corresponding name (e.g. `content/sub/page.md`) -and you will be able to access it from the URL `http://yoursite.com/sub/page`. Below we've shown some examples of content locations and their corresponing URL's: +If you create a folder within the content-sample folder (e.g. `content-sample/sub`) and put an `index.md` inside it, you can access that folder at the URL +`http://yoursite.com/sub`. If you want another page within the sub folder, simply create a text file with the corresponding name (e.g. `content-sample/sub/page.md`) +and you will be able to access it from the URL `http://yoursite.com/sub/page`. Below we've shown some examples of content-sample locations and their corresponing URL's:
Physical Location | URL |
---|---|
content/index.md | / |
content/sub.md | /sub |
content/sub/index.md | /sub (same as above) |
content/sub/page.md | /sub/page |
content/a/very/long/url.md | /a/very/long/url |
content-sample/index.md | / |
content-sample/sub.md | /sub |
content-sample/sub/index.md | /sub (same as above) |
content-sample/sub/page.md | /sub/page |
content-sample/a/very/long/url.md | /a/very/long/url |