sample content updates
This commit is contained in:
parent
4bcfd7aec6
commit
5abba311dc
5 changed files with 10 additions and 10 deletions
|
@ -4,7 +4,7 @@ categories : helpers
|
|||
---
|
||||
|
||||
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
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
layout: page
|
||||
layout: post
|
||||
categories : usage
|
||||
---
|
||||
|
||||
|
|
|
@ -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.
|
||||
Jekyll-bootstrap-core is a clean base framework for your blog.
|
||||
[Install Jekyll-Bootsrap](/index.html#start-now) if you haven't already.
|
||||
Jekyll-bootstrap is a clean base framework for your blog.
|
||||
It includes two themes, some useful pages, and bootstrap include-helpers.
|
||||
|
||||
## 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).
|
||||
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:
|
||||
|
||||
$ cd jekyll-bootstrap
|
||||
|
@ -30,7 +30,7 @@ Your blog is now available at: [http://localhost:4000/](http://localhost:4000/).
|
|||
|
||||
## 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.
|
||||
|
||||
## 3. Create Some Content
|
||||
|
@ -50,7 +50,6 @@ You can study the source and customize it for your own needs.
|
|||
|
||||
<ul>
|
||||
{% assign pages_list = site.pages %}
|
||||
{% assign group = "example-page" %}
|
||||
{% include helpers/pages_list.html %}
|
||||
</ul>
|
||||
|
||||
|
@ -63,7 +62,7 @@ A GitHub post-commit hook will automatically deploy your changes to your hosted
|
|||
|
||||
## 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.
|
||||
|
||||
However I'm betting you want to get your hands dirty.
|
||||
|
|
2
index.md
2
index.md
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
title: Hello from Jekyll-Bootstrap-Core
|
||||
title: Hello from Jekyll-Bootstrap
|
||||
header: This is Jekyll-Bootstrap
|
||||
---
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
# Remember to set production_url in your _config.yml file!
|
||||
title : Sitemap
|
||||
---
|
||||
{% for page in site.pages %}
|
||||
{{site.production_url}}{{ page.url }}{% endfor %}
|
||||
|
|
Loading…
Add table
Reference in a new issue