This commit is contained in:
Michael Rose 2014-08-01 14:44:35 -04:00
parent 2ee8c7378d
commit d6b84263d6
2 changed files with 15 additions and 16 deletions

View file

@ -47,21 +47,21 @@ General notes and suggestions for customizing So Simple Theme.
3. Set the following variables in your `config.yml` file: 3. Set the following variables in your `config.yml` file:
``` yaml ``` yaml
title: Site Title title:
description: Site description for the metas. description:
logo: site-logo.png logo:
disqus_shortname: shortname disqus_shortname:
search: true search: true
# Your site's domain goes here. When working locally use localhost server leave blank # Your site's domain goes here. When working locally use localhost server
# PS. If you set this wrong stylesheets and scripts won't load and most links will break. # PS. If you set this wrong stylesheets and scripts won't load and most links will break.
# PPS. If you leave it blank for local testing home links won't work, they'll be fine for live domains though. # PPS. If you leave it blank for local testing home links won't work, they'll be fine for live domains though.
url: http://localhost:4000 url: http://localhost:4000
# Owner/author information # Owner/author information
owner: owner:
name: Your Name name:
avatar: your-photo.jpg avatar:
email: your@email.com email:
# Social networking links used in footer. Update and remove as you like. # Social networking links used in footer. Update and remove as you like.
twitter: twitter:
facebook: facebook:
@ -89,10 +89,11 @@ links:
url: http://google.com url: http://google.com
external: true external: true
# http://en.wikipedia.org/wiki/List_of_tz_database_time_zones highlighter: pygments
timezone: America/New_York markdown: kramdown
pygments: true
markdown: kramdown gems:
- jekyll-sitemap
# https://github.com/mojombo/jekyll/wiki/Permalinks # https://github.com/mojombo/jekyll/wiki/Permalinks
permalink: /:categories/:title/ permalink: /:categories/:title/
@ -127,8 +128,7 @@ so-simple-theme/
├── about.md #about page ├── about.md #about page
├── articles.html #lists all posts from latest to oldest ├── articles.html #lists all posts from latest to oldest
├── index.html #homepage. lists 10 latest posts ├── index.html #homepage. lists 10 latest posts
├── tags.html #lists all posts sorted by tag └── tags.html #lists all posts sorted by tag
└── sitemap.xml #autogenerated sitemap for search engines
``` ```
--- ---

View file

@ -115,8 +115,7 @@ so-simple-theme/
├── about.md #about page ├── about.md #about page
├── articles.html #lists all posts from latest to oldest ├── articles.html #lists all posts from latest to oldest
├── index.html #homepage. lists 10 latest posts ├── index.html #homepage. lists 10 latest posts
├── tags.html #lists all posts sorted by tag └── tags.html #lists all posts sorted by tag
└── sitemap.xml #autogenerated sitemap for search engines
{% endhighlight %} {% endhighlight %}
--- ---