sample content updates

This commit is contained in:
Jade Dominguez 2012-01-12 12:47:58 -08:00
parent 4bcfd7aec6
commit 5abba311dc
5 changed files with 10 additions and 10 deletions

View file

@ -4,7 +4,7 @@ categories : helpers
--- ---
The posts collate helper organizes and lists posts in month/year clusters. The posts collate helper organizes and lists posts in month/year clusters.
The posts collate helper follows the [Jekyll-bootstrap include helper](/lessons/bootstrap-api.html) strategy. The posts collate helper follows the [Jekyll-bootstrap include helper](/api/bootstrap-api.html) strategy.
## Usage ## Usage

View file

@ -1,5 +1,5 @@
--- ---
layout: page layout: post
categories : usage categories : usage
--- ---

View file

@ -4,10 +4,10 @@ categories : usage
--- ---
## 1. Install Jekyll-Bootstrap-Core ## 1. Install Jekyll-Bootstrap
[Install Jekyll-Bootsrap-Core](/index.html#start-now) if you haven't already. [Install Jekyll-Bootsrap](/index.html#start-now) if you haven't already.
Jekyll-bootstrap-core is a clean base framework for your blog. Jekyll-bootstrap is a clean base framework for your blog.
It includes two themes, some useful pages, and bootstrap include-helpers. It includes two themes, some useful pages, and bootstrap include-helpers.
## 2. Run Jekyll Locally ## 2. Run Jekyll Locally
@ -19,7 +19,7 @@ In order to preview your blog locally you'll need to install the jekyll gem. Not
If you run into a problem please consult the original [Jekyll installation documentation](https://github.com/mojombo/jekyll/wiki/Install). If you run into a problem please consult the original [Jekyll installation documentation](https://github.com/mojombo/jekyll/wiki/Install).
You can also [contact me](http://github.com/plusjade) through github. You can also [contact me](http://github.com/plusjade) through github.
Once the gem is installed you can navigate to your Jekyll-bootstrap-core directory Once the gem is installed you can navigate to your Jekyll-bootstrap directory
and run jekyll: and run jekyll:
$ cd jekyll-bootstrap $ cd jekyll-bootstrap
@ -30,7 +30,7 @@ Your blog is now available at: [http://localhost:4000/](http://localhost:4000/).
## 2. Choose a Theme ## 2. Choose a Theme
Jekyll-bootstrap-core has a basic theming system that I'll be steadily improving. Jekyll-bootstrap has a basic theming system that I'll be steadily improving.
You can read about how to choose and customize a theme in the [Theming](/usages/theming.html) section. You can read about how to choose and customize a theme in the [Theming](/usages/theming.html) section.
## 3. Create Some Content ## 3. Create Some Content
@ -50,7 +50,6 @@ You can study the source and customize it for your own needs.
<ul> <ul>
{% assign pages_list = site.pages %} {% assign pages_list = site.pages %}
{% assign group = "example-page" %}
{% include helpers/pages_list.html %} {% include helpers/pages_list.html %}
</ul> </ul>
@ -63,7 +62,7 @@ A GitHub post-commit hook will automatically deploy your changes to your hosted
## 5. Customize ## 5. Customize
Jekyll-bootstrap-core can be used as-is as a basic blogging platform with little need Jekyll-bootstrap can be used as-is as a basic blogging platform with little need
to understand what's going on under the hood. to understand what's going on under the hood.
However I'm betting you want to get your hands dirty. However I'm betting you want to get your hands dirty.

View file

@ -1,6 +1,6 @@
--- ---
layout: page layout: page
title: Hello from Jekyll-Bootstrap-Core title: Hello from Jekyll-Bootstrap
header: This is Jekyll-Bootstrap header: This is Jekyll-Bootstrap
--- ---

View file

@ -1,5 +1,6 @@
--- ---
# Remember to set production_url in your _config.yml file! # Remember to set production_url in your _config.yml file!
title : Sitemap
--- ---
{% for page in site.pages %} {% for page in site.pages %}
{{site.production_url}}{{ page.url }}{% endfor %} {{site.production_url}}{{ page.url }}{% endfor %}