sssio-private-theme 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +3 -0
- data/assets/config.yml +33 -0
- data/assets/includes/archive_post.html +18 -0
- data/assets/includes/category_links.html +2 -0
- data/assets/includes/head.html +26 -0
- data/assets/includes/header.html +3 -0
- data/assets/includes/index_post.html +23 -0
- data/assets/includes/main_nav.html +50 -0
- data/assets/includes/nav_items.html +7 -0
- data/assets/includes/post_meta.html +5 -0
- data/assets/includes/post_nav.html +16 -0
- data/assets/includes/search.html +0 -0
- data/assets/includes/site_footer.html +10 -0
- data/assets/includes/site_header.html +3 -0
- data/assets/includes/tag_links.html +2 -0
- data/assets/layouts/article.html +23 -0
- data/assets/layouts/base.html +24 -0
- data/assets/layouts/default.html +11 -0
- data/assets/layouts/elements.html +349 -0
- data/assets/layouts/page.html +5 -0
- data/assets/layouts/paginated-posts.html +18 -0
- data/assets/layouts/post.html +11 -0
- data/assets/stylesheets/_buttons.sass +36 -0
- data/assets/stylesheets/_circles.sass +32 -0
- data/assets/stylesheets/_jumbo.sass +76 -0
- data/assets/stylesheets/_navbar.sass +61 -0
- data/assets/stylesheets/_pagination.sass +30 -0
- data/assets/stylesheets/main.sass +51 -0
- data/assets/templates/category_feed.xml +8 -0
- data/assets/templates/category_index.html +18 -0
- data/assets/templates/post_archive.html +17 -0
- data/assets/templates/post_index.html +9 -0
- data/lib/sssio-private-theme.rb +25 -0
- data/lib/sssio-private-theme/version.rb +5 -0
- metadata +344 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: theme:default
|
|
3
|
+
---
|
|
4
|
+
<div class="post-index">
|
|
5
|
+
{% for post in paginator.posts %}
|
|
6
|
+
{% include theme:index_post.html %}
|
|
7
|
+
{% endfor %}
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<nav class="post-index-nav pagination" role="navigation">
|
|
11
|
+
{% if paginator.next_page %}
|
|
12
|
+
<a class="pagination-prev" title="Older posts" href="{{paginator.next_page_path}}">← Older</a>
|
|
13
|
+
{% endif %}
|
|
14
|
+
<a class='archive-link' href="/archive">Post Archive</a>
|
|
15
|
+
{% if paginator.previous_page %}
|
|
16
|
+
<a class="pagination-next" title="Newer posts" href="{{paginator.previous_page_path}}">Newer →</a>
|
|
17
|
+
{% endif %}
|
|
18
|
+
</nav>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: theme:article
|
|
3
|
+
---
|
|
4
|
+
{% assign is_post = true %}
|
|
5
|
+
{{ content }}
|
|
6
|
+
|
|
7
|
+
{% include theme:post_nav.html %}
|
|
8
|
+
|
|
9
|
+
{% wrap include theme:social/comments.html if theme.comments and page.comments != false %}
|
|
10
|
+
<div class='entry-comments'>{{ yield }}</div>
|
|
11
|
+
{% endwrap %}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
.btn
|
|
2
|
+
border-width: 3px
|
|
3
|
+
text-shadow: none
|
|
4
|
+
letter-spacing: 0.05em
|
|
5
|
+
text-transform: uppercase
|
|
6
|
+
text-decoration: none !important
|
|
7
|
+
|
|
8
|
+
&.btn-lg
|
|
9
|
+
padding: 0.7em 3.5em
|
|
10
|
+
|
|
11
|
+
&.btn-default
|
|
12
|
+
background-color: transparent
|
|
13
|
+
background-image: none
|
|
14
|
+
color: $dark
|
|
15
|
+
border-color: $dark
|
|
16
|
+
|
|
17
|
+
&.btn-grey
|
|
18
|
+
border-width: 3px
|
|
19
|
+
border-style: solid
|
|
20
|
+
border-color: $light
|
|
21
|
+
font-weight: 400
|
|
22
|
+
color: $dark
|
|
23
|
+
|
|
24
|
+
.dark
|
|
25
|
+
.btn
|
|
26
|
+
border-color: $lighter
|
|
27
|
+
|
|
28
|
+
&.btn-default
|
|
29
|
+
background-color: transparent
|
|
30
|
+
background-image: none
|
|
31
|
+
color: $lighter
|
|
32
|
+
&:hover
|
|
33
|
+
background-color: rgba($lighter, 0.2)
|
|
34
|
+
|
|
35
|
+
%a.btn
|
|
36
|
+
text-decoration: none
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
$circle-border-width: 3px
|
|
2
|
+
|
|
3
|
+
.circle
|
|
4
|
+
border-radius: 50%
|
|
5
|
+
display: inline-block
|
|
6
|
+
display: inline-block
|
|
7
|
+
width: 100%
|
|
8
|
+
background-color: transparent
|
|
9
|
+
border-width: $circle-border-width
|
|
10
|
+
border-style: solid
|
|
11
|
+
border-color: $dark
|
|
12
|
+
text-align: left
|
|
13
|
+
|
|
14
|
+
.inner
|
|
15
|
+
height: 0
|
|
16
|
+
padding-bottom: 100%
|
|
17
|
+
color: #fff
|
|
18
|
+
position: relative
|
|
19
|
+
span
|
|
20
|
+
text-align: center
|
|
21
|
+
width: 100%
|
|
22
|
+
mergin: 0
|
|
23
|
+
position: absolute
|
|
24
|
+
top: 50%
|
|
25
|
+
transform: translate(0, -50%)
|
|
26
|
+
i
|
|
27
|
+
font-size: 30px
|
|
28
|
+
&:hover
|
|
29
|
+
background-color: rgba($lighter, 0.2)
|
|
30
|
+
|
|
31
|
+
.dark .circle
|
|
32
|
+
border-color: $lighter
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
.jumbotron
|
|
2
|
+
margin: 0
|
|
3
|
+
padding: 0
|
|
4
|
+
|
|
5
|
+
&.lighter
|
|
6
|
+
background-color: $lighter
|
|
7
|
+
|
|
8
|
+
&.dark
|
|
9
|
+
background-color: transparent
|
|
10
|
+
color: $lighter
|
|
11
|
+
a
|
|
12
|
+
color: $lighter
|
|
13
|
+
text-decoration: underline
|
|
14
|
+
&:hover
|
|
15
|
+
text-decoration: none
|
|
16
|
+
|
|
17
|
+
.overlay
|
|
18
|
+
background-color: rgba($dark, 0.6)
|
|
19
|
+
&.padding-sm
|
|
20
|
+
padding-top: 25px
|
|
21
|
+
padding-bottom: 25px
|
|
22
|
+
&.padding
|
|
23
|
+
padding-top: 50px
|
|
24
|
+
padding-bottom: 50px
|
|
25
|
+
&.padding-lg
|
|
26
|
+
padding-top: 100px
|
|
27
|
+
padding-bottom: 100px
|
|
28
|
+
|
|
29
|
+
p
|
|
30
|
+
color: #fff
|
|
31
|
+
font-size: 1.0em
|
|
32
|
+
margin: 0em
|
|
33
|
+
padding: 0em
|
|
34
|
+
|
|
35
|
+
p.lg
|
|
36
|
+
color: #fff
|
|
37
|
+
font-size: 1.5em
|
|
38
|
+
margin: 0em
|
|
39
|
+
padding: 0em
|
|
40
|
+
|
|
41
|
+
&.dark h4
|
|
42
|
+
color: $lighter
|
|
43
|
+
|
|
44
|
+
&.background
|
|
45
|
+
// background-image: url(https://unsplash.com/photos/ZMcLVBi9xx4/download)
|
|
46
|
+
width: 100%
|
|
47
|
+
background-size: cover
|
|
48
|
+
background-repeat: no-repeat
|
|
49
|
+
background-position: center center
|
|
50
|
+
|
|
51
|
+
&.fixed
|
|
52
|
+
// background-image: url(https://unsplash.com/photos/ZMcLVBi9xx4/download)
|
|
53
|
+
background-size: cover
|
|
54
|
+
background-attachment: fixed
|
|
55
|
+
background-repeat: no-repeat
|
|
56
|
+
background-position: center center
|
|
57
|
+
display: table
|
|
58
|
+
position: relative
|
|
59
|
+
width: 100%
|
|
60
|
+
-webkit-background-size: cover
|
|
61
|
+
-moz-background-size: cover
|
|
62
|
+
-o-background-size: cover
|
|
63
|
+
background-size: cover
|
|
64
|
+
|
|
65
|
+
&.teaser-1
|
|
66
|
+
h4
|
|
67
|
+
padding-bottom: 0.5em
|
|
68
|
+
p
|
|
69
|
+
text-transform: uppercase
|
|
70
|
+
&.teaser-2
|
|
71
|
+
h4
|
|
72
|
+
padding: 0
|
|
73
|
+
p
|
|
74
|
+
text-transform: uppercase
|
|
75
|
+
.btn-lg
|
|
76
|
+
margin-top: 0.5em
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
.navbar
|
|
2
|
+
box-shadow: none
|
|
3
|
+
-webkit-box-shadow: none
|
|
4
|
+
-moz-border-radius: 0 / 0
|
|
5
|
+
-webkit-border-radius: 0 0
|
|
6
|
+
border-radius: 0 / 0
|
|
7
|
+
|
|
8
|
+
li > a
|
|
9
|
+
text-shadow: none
|
|
10
|
+
text-decoration: none
|
|
11
|
+
|
|
12
|
+
&.navbar-default
|
|
13
|
+
background-color: transparent
|
|
14
|
+
border: 0px solid transparent
|
|
15
|
+
background-color: transparent
|
|
16
|
+
background-image: none
|
|
17
|
+
color: $dark
|
|
18
|
+
a, li > a
|
|
19
|
+
color: $dark
|
|
20
|
+
text-decoration: none
|
|
21
|
+
.container-fluid
|
|
22
|
+
padding-left: 0px
|
|
23
|
+
padding-right: 0px
|
|
24
|
+
|
|
25
|
+
&.navbar-inverse
|
|
26
|
+
border: 0px solid $dark
|
|
27
|
+
background-color: $dark
|
|
28
|
+
color: $lighter
|
|
29
|
+
background-image: none
|
|
30
|
+
filter: none
|
|
31
|
+
-webkit-filter: none
|
|
32
|
+
a, li > a
|
|
33
|
+
text-shadow: none
|
|
34
|
+
color: $lighter
|
|
35
|
+
li
|
|
36
|
+
ul.dropdown-menu
|
|
37
|
+
a
|
|
38
|
+
color: $dark
|
|
39
|
+
|
|
40
|
+
.dark
|
|
41
|
+
.navbar
|
|
42
|
+
&.navbar-default
|
|
43
|
+
border: 0px solid transparent
|
|
44
|
+
background-color: transparent
|
|
45
|
+
background-image: none
|
|
46
|
+
color: $lighter
|
|
47
|
+
a, li > a
|
|
48
|
+
color: $lighter
|
|
49
|
+
text-decoration: none
|
|
50
|
+
li
|
|
51
|
+
ul.dropdown-menu
|
|
52
|
+
a
|
|
53
|
+
color: $dark
|
|
54
|
+
|
|
55
|
+
&.navbar-inverse
|
|
56
|
+
border: 0px solid transparent
|
|
57
|
+
background-color: $lighter
|
|
58
|
+
background-image: none
|
|
59
|
+
color: $dark
|
|
60
|
+
a, li > a
|
|
61
|
+
color: $dark
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.pagination
|
|
2
|
+
li
|
|
3
|
+
a
|
|
4
|
+
padding: 1em 1.5em
|
|
5
|
+
border-left: 0px solid $light
|
|
6
|
+
border-top: 3px solid $light
|
|
7
|
+
border-bottom: 3px solid $light
|
|
8
|
+
border-right: 3px solid $light
|
|
9
|
+
color: $dark
|
|
10
|
+
background-color: transparent
|
|
11
|
+
&:hover
|
|
12
|
+
background-color: darken($lighter, 10)
|
|
13
|
+
border-color: $light
|
|
14
|
+
|
|
15
|
+
&:first-child a, &:first-child a:hover
|
|
16
|
+
border-left: 3px solid $light
|
|
17
|
+
&:first-child span
|
|
18
|
+
border-left: 0px solid $light
|
|
19
|
+
&:first-child span, &:first-child span:hover
|
|
20
|
+
border-left: 3px solid $light
|
|
21
|
+
|
|
22
|
+
.dark
|
|
23
|
+
.pagination
|
|
24
|
+
li
|
|
25
|
+
a
|
|
26
|
+
border-color: $lighter
|
|
27
|
+
color: $lighter
|
|
28
|
+
background-color: transparent
|
|
29
|
+
&:hover
|
|
30
|
+
background-color: lighten($dark, 20)
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
|
|
2
|
+
$dark: #2F373F
|
|
3
|
+
$light: #F2E9E1
|
|
4
|
+
$lighter: #FFFFFF
|
|
5
|
+
$red: #EF3623
|
|
6
|
+
$blue: #66CCDE
|
|
7
|
+
$yellow: #FBCB3C
|
|
8
|
+
$green: #CBE86B
|
|
9
|
+
|
|
10
|
+
html, body
|
|
11
|
+
font-family: 'Open Sans', sans-serif
|
|
12
|
+
font-weight: 400
|
|
13
|
+
|
|
14
|
+
h1, h2, h3, h4
|
|
15
|
+
text-transform: uppercase
|
|
16
|
+
|
|
17
|
+
h2
|
|
18
|
+
font-size: 4.5em
|
|
19
|
+
padding: 0
|
|
20
|
+
margin: 0
|
|
21
|
+
font-weight: 900
|
|
22
|
+
text-transform: uppercase
|
|
23
|
+
|
|
24
|
+
@import "buttons"
|
|
25
|
+
@import "circles"
|
|
26
|
+
@import "pagination"
|
|
27
|
+
@import "navbar"
|
|
28
|
+
@import "jumbo"
|
|
29
|
+
|
|
30
|
+
.jumbotron, .container
|
|
31
|
+
&.padding-sm
|
|
32
|
+
padding-top: 25px
|
|
33
|
+
padding-bottom: 25px
|
|
34
|
+
&.padding
|
|
35
|
+
padding-top: 50px
|
|
36
|
+
padding-bottom: 50px
|
|
37
|
+
&.padding-lg
|
|
38
|
+
padding-top: 75px
|
|
39
|
+
padding-bottom: 75px
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
hr
|
|
43
|
+
border-top: 2px solid $light
|
|
44
|
+
&.small
|
|
45
|
+
width: 20%
|
|
46
|
+
|
|
47
|
+
.dark
|
|
48
|
+
font-weight: 300
|
|
49
|
+
hr
|
|
50
|
+
border-color: $lighter
|
|
51
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{% assign last_post = site.categories[page.category].last %}
|
|
2
|
+
{% include theme:feed/head.xml last_post=last_post %}
|
|
3
|
+
{% for post in site.categories[page.category] limit:theme.feeds.count %}
|
|
4
|
+
<entry>
|
|
5
|
+
{% include theme:feed/entry.xml %}
|
|
6
|
+
</entry>
|
|
7
|
+
{% endfor %}
|
|
8
|
+
</feed>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: theme:default
|
|
3
|
+
---
|
|
4
|
+
<div class="page">
|
|
5
|
+
<div class="category-index">
|
|
6
|
+
{% for post in site.categories[page.category] %}
|
|
7
|
+
{% assign post_year = post.date | date: "%Y" %}
|
|
8
|
+
{% if post_year != current_year %}
|
|
9
|
+
{% if current_year %}</div>{% endif %}
|
|
10
|
+
{% assign current_year = post_year %}
|
|
11
|
+
<div class='archive-year'>
|
|
12
|
+
<h2 class='archive-year-heading'>{{ post_year }}</h2>
|
|
13
|
+
{% endif %}
|
|
14
|
+
{% include theme:archive_post.html %}
|
|
15
|
+
{% endfor %}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Archive
|
|
3
|
+
layout: theme:default
|
|
4
|
+
---
|
|
5
|
+
<div class="post-archive limit-width">
|
|
6
|
+
{% for post in site.posts reverse %}
|
|
7
|
+
{% assign post_year = post.date | date: "%Y" %}
|
|
8
|
+
{% if post_year != current_year %}
|
|
9
|
+
{% if current_year %}</div>{% endif %}
|
|
10
|
+
{% assign current_year = post_year %}
|
|
11
|
+
<div class='archive-year'>
|
|
12
|
+
<h2 class='archive-year-heading'>{{ post_year }}</h2>
|
|
13
|
+
{% endif %}
|
|
14
|
+
{% include theme:archive_post.html %}
|
|
15
|
+
{% endfor %}
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require 'octopress-ink'
|
|
2
|
+
require 'octopress-linkblog'
|
|
3
|
+
require 'octopress-autoprefixer'
|
|
4
|
+
require 'octopress-date-format'
|
|
5
|
+
require 'octopress-comment-tag'
|
|
6
|
+
require 'octopress-wrap-tag'
|
|
7
|
+
require 'octopress-assign-tag'
|
|
8
|
+
require 'octopress-return-tag'
|
|
9
|
+
require 'octopress-include-tag'
|
|
10
|
+
require 'octopress-content-for'
|
|
11
|
+
require 'octopress-filter-tag'
|
|
12
|
+
require 'octopress-paginate'
|
|
13
|
+
require 'octopress-social'
|
|
14
|
+
require 'octopress-littlefoot'
|
|
15
|
+
|
|
16
|
+
require 'sssio-private-theme/version'
|
|
17
|
+
|
|
18
|
+
Octopress::Ink.add_theme({
|
|
19
|
+
name: "sss.io private theme",
|
|
20
|
+
gem: "sssio-private-theme",
|
|
21
|
+
path: File.expand_path(File.join(File.dirname(__FILE__), "../")),
|
|
22
|
+
version: SssIo::PrivateTheme::VERSION,
|
|
23
|
+
source_url: "https://github.com/sss-io/sssio-private-theme",
|
|
24
|
+
description: "A minimal theme for the sss.io-editor and Jekyll sites build on Octopress Ink"
|
|
25
|
+
})
|
metadata
ADDED
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sssio-private-theme
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.10
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Frank Cieslik
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-10-14 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: octopress-ink
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: octopress-linkblog
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: octopress-date-format
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: octopress-paginate
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: octopress-autoprefixer
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - '>='
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - '>='
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: octopress-wrap-tag
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - '>='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - '>='
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: octopress-assign-tag
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - '>='
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - '>='
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: octopress-filter-tag
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - '>='
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '0'
|
|
118
|
+
type: :runtime
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - '>='
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '0'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: octopress-comment-tag
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - '>='
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '0'
|
|
132
|
+
type: :runtime
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - '>='
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '0'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: octopress-quote-tag
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - '>='
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '0'
|
|
146
|
+
type: :runtime
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - '>='
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '0'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: octopress-social
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - '>='
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '0'
|
|
160
|
+
type: :runtime
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - '>='
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '0'
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: octopress-littlefoot
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - '>='
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '0'
|
|
174
|
+
type: :runtime
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - '>='
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '0'
|
|
181
|
+
- !ruby/object:Gem::Dependency
|
|
182
|
+
name: sass
|
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
|
184
|
+
requirements:
|
|
185
|
+
- - ~>
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: '3.4'
|
|
188
|
+
type: :runtime
|
|
189
|
+
prerelease: false
|
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - ~>
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: '3.4'
|
|
195
|
+
- !ruby/object:Gem::Dependency
|
|
196
|
+
name: jekyll
|
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
|
198
|
+
requirements:
|
|
199
|
+
- - '>='
|
|
200
|
+
- !ruby/object:Gem::Version
|
|
201
|
+
version: '2.0'
|
|
202
|
+
type: :runtime
|
|
203
|
+
prerelease: false
|
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
205
|
+
requirements:
|
|
206
|
+
- - '>='
|
|
207
|
+
- !ruby/object:Gem::Version
|
|
208
|
+
version: '2.0'
|
|
209
|
+
- !ruby/object:Gem::Dependency
|
|
210
|
+
name: bundler
|
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
|
212
|
+
requirements:
|
|
213
|
+
- - ~>
|
|
214
|
+
- !ruby/object:Gem::Version
|
|
215
|
+
version: '1.6'
|
|
216
|
+
type: :development
|
|
217
|
+
prerelease: false
|
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
219
|
+
requirements:
|
|
220
|
+
- - ~>
|
|
221
|
+
- !ruby/object:Gem::Version
|
|
222
|
+
version: '1.6'
|
|
223
|
+
- !ruby/object:Gem::Dependency
|
|
224
|
+
name: rake
|
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
|
226
|
+
requirements:
|
|
227
|
+
- - '>='
|
|
228
|
+
- !ruby/object:Gem::Version
|
|
229
|
+
version: '0'
|
|
230
|
+
type: :development
|
|
231
|
+
prerelease: false
|
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
233
|
+
requirements:
|
|
234
|
+
- - '>='
|
|
235
|
+
- !ruby/object:Gem::Version
|
|
236
|
+
version: '0'
|
|
237
|
+
- !ruby/object:Gem::Dependency
|
|
238
|
+
name: octopress
|
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
|
240
|
+
requirements:
|
|
241
|
+
- - '>='
|
|
242
|
+
- !ruby/object:Gem::Version
|
|
243
|
+
version: '0'
|
|
244
|
+
type: :development
|
|
245
|
+
prerelease: false
|
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
247
|
+
requirements:
|
|
248
|
+
- - '>='
|
|
249
|
+
- !ruby/object:Gem::Version
|
|
250
|
+
version: '0'
|
|
251
|
+
- !ruby/object:Gem::Dependency
|
|
252
|
+
name: clash
|
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
|
254
|
+
requirements:
|
|
255
|
+
- - '>='
|
|
256
|
+
- !ruby/object:Gem::Version
|
|
257
|
+
version: '0'
|
|
258
|
+
type: :development
|
|
259
|
+
prerelease: false
|
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
261
|
+
requirements:
|
|
262
|
+
- - '>='
|
|
263
|
+
- !ruby/object:Gem::Version
|
|
264
|
+
version: '0'
|
|
265
|
+
- !ruby/object:Gem::Dependency
|
|
266
|
+
name: octopress-debugger
|
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
|
268
|
+
requirements:
|
|
269
|
+
- - '>='
|
|
270
|
+
- !ruby/object:Gem::Version
|
|
271
|
+
version: '0'
|
|
272
|
+
type: :development
|
|
273
|
+
prerelease: false
|
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
275
|
+
requirements:
|
|
276
|
+
- - '>='
|
|
277
|
+
- !ruby/object:Gem::Version
|
|
278
|
+
version: '0'
|
|
279
|
+
description:
|
|
280
|
+
email:
|
|
281
|
+
- frank.cieslik@gmail.com
|
|
282
|
+
executables: []
|
|
283
|
+
extensions: []
|
|
284
|
+
extra_rdoc_files: []
|
|
285
|
+
files:
|
|
286
|
+
- README.md
|
|
287
|
+
- assets/config.yml
|
|
288
|
+
- assets/includes/archive_post.html
|
|
289
|
+
- assets/includes/category_links.html
|
|
290
|
+
- assets/includes/head.html
|
|
291
|
+
- assets/includes/header.html
|
|
292
|
+
- assets/includes/index_post.html
|
|
293
|
+
- assets/includes/main_nav.html
|
|
294
|
+
- assets/includes/nav_items.html
|
|
295
|
+
- assets/includes/post_meta.html
|
|
296
|
+
- assets/includes/post_nav.html
|
|
297
|
+
- assets/includes/search.html
|
|
298
|
+
- assets/includes/site_footer.html
|
|
299
|
+
- assets/includes/site_header.html
|
|
300
|
+
- assets/includes/tag_links.html
|
|
301
|
+
- assets/layouts/article.html
|
|
302
|
+
- assets/layouts/base.html
|
|
303
|
+
- assets/layouts/default.html
|
|
304
|
+
- assets/layouts/elements.html
|
|
305
|
+
- assets/layouts/page.html
|
|
306
|
+
- assets/layouts/paginated-posts.html
|
|
307
|
+
- assets/layouts/post.html
|
|
308
|
+
- assets/stylesheets/_buttons.sass
|
|
309
|
+
- assets/stylesheets/_circles.sass
|
|
310
|
+
- assets/stylesheets/_jumbo.sass
|
|
311
|
+
- assets/stylesheets/_navbar.sass
|
|
312
|
+
- assets/stylesheets/_pagination.sass
|
|
313
|
+
- assets/stylesheets/main.sass
|
|
314
|
+
- assets/templates/category_feed.xml
|
|
315
|
+
- assets/templates/category_index.html
|
|
316
|
+
- assets/templates/post_archive.html
|
|
317
|
+
- assets/templates/post_index.html
|
|
318
|
+
- lib/sssio-private-theme.rb
|
|
319
|
+
- lib/sssio-private-theme/version.rb
|
|
320
|
+
homepage: https://github.com/sss-io/private-theme
|
|
321
|
+
licenses:
|
|
322
|
+
- MIT
|
|
323
|
+
metadata: {}
|
|
324
|
+
post_install_message:
|
|
325
|
+
rdoc_options: []
|
|
326
|
+
require_paths:
|
|
327
|
+
- lib
|
|
328
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
329
|
+
requirements:
|
|
330
|
+
- - '>='
|
|
331
|
+
- !ruby/object:Gem::Version
|
|
332
|
+
version: '0'
|
|
333
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
334
|
+
requirements:
|
|
335
|
+
- - '>='
|
|
336
|
+
- !ruby/object:Gem::Version
|
|
337
|
+
version: '0'
|
|
338
|
+
requirements: []
|
|
339
|
+
rubyforge_project:
|
|
340
|
+
rubygems_version: 2.0.14
|
|
341
|
+
signing_key:
|
|
342
|
+
specification_version: 4
|
|
343
|
+
summary: a jekyll / octopress theme built for use with sss.io
|
|
344
|
+
test_files: []
|