octopress-genesis-theme 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +26 -5
- data/assets/config.yml +7 -7
- data/lib/octopress-genesis-theme/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1be774518d5cf31019077bf2ad109f433710a4b7
|
4
|
+
data.tar.gz: 3115043ff22e80b0927f6513a473c0dd16c93097
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e342716e79180df0dc6165402b265c5859688854c88793f8ba4fff8868ca6716d122014e5c8d528930bfe1ddd00b5ed1030e3c6ba04dae08b73b70681251d0e
|
7
|
+
data.tar.gz: 7cfa9767d45397f55e6e9dc684e6f31b3b9c49ddde9d1bffb6351cc8e57c50fc4d81abc91d50601913babd74daff3ebda3f7dbb9eec475584851a04d462653a6
|
data/README.md
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
|
3
3
|
A new theme build on Octopress Ink.
|
4
4
|
|
5
|
+
[![Gem Version](http://img.shields.io/gem/v/octopress-genesis-theme.svg)](https://rubygems.org/gems/octopress-genesis-theme)
|
6
|
+
[![License](http://img.shields.io/:license-mit-blue.svg)](http://octopress.mit-license.org)
|
7
|
+
|
5
8
|
Note: This theme is in alpha development. What's left to do? See [the issues](https://github.com/octopress/genesis-theme/issues/).
|
6
9
|
|
7
10
|
## Installation
|
@@ -42,19 +45,37 @@ the defaults.
|
|
42
45
|
```yaml
|
43
46
|
# Settings for main header
|
44
47
|
title: My Octopress Blog
|
45
|
-
subtitle:
|
48
|
+
subtitle:
|
46
49
|
|
47
50
|
# Links for main navigation
|
48
51
|
nav:
|
49
|
-
- { url: '/', title: '
|
50
|
-
- { url: '/archive', title: 'Archive' }
|
51
|
-
- { url: '/feed', title: '
|
52
|
+
- { url: '/', title: 'Posts' }
|
53
|
+
- { url: '/archive/', title: 'Archive' }
|
54
|
+
- { url: '/feed/', title: 'Subscribe' }
|
52
55
|
|
56
|
+
# Link labels
|
53
57
|
permalink_label: "Permalink"
|
54
58
|
read_more_label: "Continue Reading →"
|
55
59
|
|
56
60
|
# Show excerpts on post index
|
57
|
-
|
61
|
+
excerpt_posts: true
|
62
|
+
# Excerpt linkposts on index
|
63
|
+
excerpt_linkposts: false
|
64
|
+
|
65
|
+
search: google
|
66
|
+
|
67
|
+
sharing:
|
68
|
+
- facebook
|
69
|
+
- twitter
|
70
|
+
- gplus
|
71
|
+
- email
|
72
|
+
|
73
|
+
# Defaults to sharing with links (for speed and privacy)
|
74
|
+
# To use javascript share buttons, set share_with: buttons
|
75
|
+
share_with: links
|
76
|
+
|
77
|
+
# Embed comments, options: false, facebook, disqus
|
78
|
+
comments: false
|
58
79
|
|
59
80
|
# Center the text in post and page headings.
|
60
81
|
center_headings: true
|
data/assets/config.yml
CHANGED
@@ -12,8 +12,10 @@ nav:
|
|
12
12
|
permalink_label: "Permalink"
|
13
13
|
read_more_label: "Continue Reading →"
|
14
14
|
|
15
|
-
# Show excerpts on post index
|
16
|
-
|
15
|
+
# Show excerpts on post index
|
16
|
+
excerpt_posts: true
|
17
|
+
# Excerpt linkposts on index
|
18
|
+
excerpt_linkposts: false
|
17
19
|
|
18
20
|
search: google
|
19
21
|
|
@@ -23,11 +25,9 @@ sharing:
|
|
23
25
|
- gplus
|
24
26
|
- email
|
25
27
|
|
26
|
-
share_with:
|
27
|
-
comments: false
|
28
|
-
excerpt_posts: true
|
29
|
-
excerpt_linkposts: false
|
28
|
+
share_with: links # or buttons
|
30
29
|
|
30
|
+
# Embed comments, options: false, facebook, disqus
|
31
|
+
comments: false
|
31
32
|
|
32
33
|
center_headings: true
|
33
|
-
|