geekyll 0.0.9
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/LICENSE.txt +21 -0
- data/README.md +48 -0
- data/_includes/footer.html +20 -0
- data/_includes/head.html +27 -0
- data/_includes/header.html +18 -0
- data/_includes/image.html +14 -0
- data/_includes/javascripts.html +7 -0
- data/_includes/navigation.html +16 -0
- data/_includes/social.html +15 -0
- data/_layouts/default.html +10 -0
- data/_layouts/index.html +48 -0
- data/_layouts/page.html +23 -0
- data/_layouts/post.html +5 -0
- data/_layouts/root.html +14 -0
- data/_sass/geekyll/_icons.scss +9 -0
- data/_sass/geekyll/_layout.scss +233 -0
- data/_sass/geekyll/_pages.scss +232 -0
- data/_sass/geekyll/_typography.scss +4 -0
- data/_sass/geekyll/bootstrap4alpha4/_alert.scss +56 -0
- data/_sass/geekyll/bootstrap4alpha4/_animation.scss +27 -0
- data/_sass/geekyll/bootstrap4alpha4/_breadcrumb.scss +38 -0
- data/_sass/geekyll/bootstrap4alpha4/_button-group.scss +234 -0
- data/_sass/geekyll/bootstrap4alpha4/_buttons.scss +176 -0
- data/_sass/geekyll/bootstrap4alpha4/_card.scss +320 -0
- data/_sass/geekyll/bootstrap4alpha4/_carousel.scss +253 -0
- data/_sass/geekyll/bootstrap4alpha4/_close.scss +31 -0
- data/_sass/geekyll/bootstrap4alpha4/_code.scss +57 -0
- data/_sass/geekyll/bootstrap4alpha4/_custom-forms.scss +265 -0
- data/_sass/geekyll/bootstrap4alpha4/_custom.scss +4 -0
- data/_sass/geekyll/bootstrap4alpha4/_dropdown.scss +179 -0
- data/_sass/geekyll/bootstrap4alpha4/_forms.scss +364 -0
- data/_sass/geekyll/bootstrap4alpha4/_grid.scss +39 -0
- data/_sass/geekyll/bootstrap4alpha4/_images.scss +52 -0
- data/_sass/geekyll/bootstrap4alpha4/_input-group.scss +188 -0
- data/_sass/geekyll/bootstrap4alpha4/_jumbotron.scss +20 -0
- data/_sass/geekyll/bootstrap4alpha4/_list-group.scss +123 -0
- data/_sass/geekyll/bootstrap4alpha4/_media.scss +81 -0
- data/_sass/geekyll/bootstrap4alpha4/_mixins.scss +54 -0
- data/_sass/geekyll/bootstrap4alpha4/_modal.scss +132 -0
- data/_sass/geekyll/bootstrap4alpha4/_nav.scss +157 -0
- data/_sass/geekyll/bootstrap4alpha4/_navbar.scss +256 -0
- data/_sass/geekyll/bootstrap4alpha4/_normalize.scss +424 -0
- data/_sass/geekyll/bootstrap4alpha4/_pagination.scss +73 -0
- data/_sass/geekyll/bootstrap4alpha4/_popover.scss +147 -0
- data/_sass/geekyll/bootstrap4alpha4/_print.scss +116 -0
- data/_sass/geekyll/bootstrap4alpha4/_progress.scss +145 -0
- data/_sass/geekyll/bootstrap4alpha4/_reboot.scss +393 -0
- data/_sass/geekyll/bootstrap4alpha4/_responsive-embed.scss +39 -0
- data/_sass/geekyll/bootstrap4alpha4/_tables.scss +196 -0
- data/_sass/geekyll/bootstrap4alpha4/_tags.scss +77 -0
- data/_sass/geekyll/bootstrap4alpha4/_tooltip.scss +87 -0
- data/_sass/geekyll/bootstrap4alpha4/_type.scss +150 -0
- data/_sass/geekyll/bootstrap4alpha4/_utilities.scss +9 -0
- data/_sass/geekyll/bootstrap4alpha4/_variables.scss +830 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap-flex.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap-grid.scss +23 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap-reboot.scss +11 -0
- data/_sass/geekyll/bootstrap4alpha4/bootstrap.scss +54 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_alert.scss +14 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_background-variant.scss +13 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_border-radius.scss +35 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_breakpoints.scss +86 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_buttons.scss +113 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_cards.scss +44 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_clearfix.scss +7 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_forms.scss +86 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_gradients.scss +43 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_grid-framework.scss +70 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_grid.scss +84 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_hover.scss +60 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_image.scss +34 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_list-group.scss +30 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_lists.scss +7 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_nav-divider.scss +10 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_navbar-align.scss +9 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_pagination.scss +21 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_progress.scss +23 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_pulls.scss +6 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_reset-filter.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_reset-text.scss +17 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_resize.scss +6 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_screen-reader.scss +32 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_size.scss +6 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_tab-focus.scss +9 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_table-row.scss +30 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_tag.scss +11 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_text-emphasis.scss +12 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_text-hide.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/mixins/_text-truncate.scss +8 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_background.scss +19 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_clearfix.scss +3 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_display.scss +13 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_flex.scss +37 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_pulls.scss +13 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_screenreaders.scss +11 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_spacing.scss +43 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_text.scss +51 -0
- data/_sass/geekyll/bootstrap4alpha4/utilities/_visibility.scss +55 -0
- data/_sass/geekyll/reset.scss +9 -0
- data/_sass/geekyll/social.scss +5 -0
- data/_sass/geekyll.scss +39 -0
- data/screenshot.png +0 -0
- metadata +188 -0
@@ -0,0 +1,55 @@
|
|
1
|
+
//
|
2
|
+
// Visibility utilities
|
3
|
+
//
|
4
|
+
|
5
|
+
.invisible {
|
6
|
+
visibility: hidden !important;
|
7
|
+
}
|
8
|
+
|
9
|
+
// Responsive visibility utilities
|
10
|
+
|
11
|
+
@each $bp in map-keys($grid-breakpoints) {
|
12
|
+
.hidden-#{$bp}-up {
|
13
|
+
@include media-breakpoint-up($bp) {
|
14
|
+
display: none !important;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
.hidden-#{$bp}-down {
|
18
|
+
@include media-breakpoint-down($bp) {
|
19
|
+
display: none !important;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
// Print utilities
|
26
|
+
//
|
27
|
+
// Media queries are placed on the inside to be mixin-friendly.
|
28
|
+
|
29
|
+
.visible-print-block {
|
30
|
+
display: none !important;
|
31
|
+
|
32
|
+
@media print {
|
33
|
+
display: block !important;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
.visible-print-inline {
|
37
|
+
display: none !important;
|
38
|
+
|
39
|
+
@media print {
|
40
|
+
display: inline !important;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
.visible-print-inline-block {
|
44
|
+
display: none !important;
|
45
|
+
|
46
|
+
@media print {
|
47
|
+
display: inline-block !important;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.hidden-print {
|
52
|
+
@media print {
|
53
|
+
display: none !important;
|
54
|
+
}
|
55
|
+
}
|
data/_sass/geekyll.scss
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
// Import bootstrap4-alpha4
|
2
|
+
@import 'geekyll/bootstrap4alpha4/bootstrap';
|
3
|
+
@import 'geekyll/bootstrap4alpha4/variables';
|
4
|
+
|
5
|
+
// Fonts
|
6
|
+
@import 'https://fonts.googleapis.com/css?family=Rubik:400,400i,500,500i,700';
|
7
|
+
$font-family: 'Rubik', Helvetica, Arial, sans-serif !default;
|
8
|
+
$font-size: 17px !default;
|
9
|
+
|
10
|
+
// Tags
|
11
|
+
.tag-area {
|
12
|
+
display: inline-block;
|
13
|
+
padding: 3px 4px;
|
14
|
+
font-size: 12px;
|
15
|
+
font-weight: 600;
|
16
|
+
line-height: 1;
|
17
|
+
border-radius: 2px;
|
18
|
+
box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
|
19
|
+
color: white;
|
20
|
+
background-color: rgb(32,125,229);
|
21
|
+
}
|
22
|
+
|
23
|
+
// Social colors
|
24
|
+
$social_github: #4f4f4f;
|
25
|
+
$social_livecoding: #4f4f4f;
|
26
|
+
$social_mail: #c1c1c1;
|
27
|
+
$social_gitlab: #fc6d26;
|
28
|
+
$social_linkedin: #385d99;
|
29
|
+
$social_google-plus-square: #d34836;
|
30
|
+
$social_twitter: #00aced;
|
31
|
+
|
32
|
+
// Import partials
|
33
|
+
@import
|
34
|
+
"geekyll/typography",
|
35
|
+
"geekyll/layout",
|
36
|
+
"geekyll/pages",
|
37
|
+
"geekyll/social",
|
38
|
+
"geekyll/icons"
|
39
|
+
;
|
data/screenshot.png
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,188 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: geekyll
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.9
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- sonirico
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-10-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.2'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.12'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.12'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
description: Geekyll strong feature is a dynamic front-page system.
|
56
|
+
email:
|
57
|
+
- marsanben92@hotmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _includes/footer.html
|
65
|
+
- _includes/head.html
|
66
|
+
- _includes/header.html
|
67
|
+
- _includes/image.html
|
68
|
+
- _includes/javascripts.html
|
69
|
+
- _includes/navigation.html
|
70
|
+
- _includes/social.html
|
71
|
+
- _layouts/default.html
|
72
|
+
- _layouts/index.html
|
73
|
+
- _layouts/page.html
|
74
|
+
- _layouts/post.html
|
75
|
+
- _layouts/root.html
|
76
|
+
- _sass/geekyll.scss
|
77
|
+
- _sass/geekyll/_icons.scss
|
78
|
+
- _sass/geekyll/_layout.scss
|
79
|
+
- _sass/geekyll/_pages.scss
|
80
|
+
- _sass/geekyll/_typography.scss
|
81
|
+
- _sass/geekyll/bootstrap4alpha4/_alert.scss
|
82
|
+
- _sass/geekyll/bootstrap4alpha4/_animation.scss
|
83
|
+
- _sass/geekyll/bootstrap4alpha4/_breadcrumb.scss
|
84
|
+
- _sass/geekyll/bootstrap4alpha4/_button-group.scss
|
85
|
+
- _sass/geekyll/bootstrap4alpha4/_buttons.scss
|
86
|
+
- _sass/geekyll/bootstrap4alpha4/_card.scss
|
87
|
+
- _sass/geekyll/bootstrap4alpha4/_carousel.scss
|
88
|
+
- _sass/geekyll/bootstrap4alpha4/_close.scss
|
89
|
+
- _sass/geekyll/bootstrap4alpha4/_code.scss
|
90
|
+
- _sass/geekyll/bootstrap4alpha4/_custom-forms.scss
|
91
|
+
- _sass/geekyll/bootstrap4alpha4/_custom.scss
|
92
|
+
- _sass/geekyll/bootstrap4alpha4/_dropdown.scss
|
93
|
+
- _sass/geekyll/bootstrap4alpha4/_forms.scss
|
94
|
+
- _sass/geekyll/bootstrap4alpha4/_grid.scss
|
95
|
+
- _sass/geekyll/bootstrap4alpha4/_images.scss
|
96
|
+
- _sass/geekyll/bootstrap4alpha4/_input-group.scss
|
97
|
+
- _sass/geekyll/bootstrap4alpha4/_jumbotron.scss
|
98
|
+
- _sass/geekyll/bootstrap4alpha4/_list-group.scss
|
99
|
+
- _sass/geekyll/bootstrap4alpha4/_media.scss
|
100
|
+
- _sass/geekyll/bootstrap4alpha4/_mixins.scss
|
101
|
+
- _sass/geekyll/bootstrap4alpha4/_modal.scss
|
102
|
+
- _sass/geekyll/bootstrap4alpha4/_nav.scss
|
103
|
+
- _sass/geekyll/bootstrap4alpha4/_navbar.scss
|
104
|
+
- _sass/geekyll/bootstrap4alpha4/_normalize.scss
|
105
|
+
- _sass/geekyll/bootstrap4alpha4/_pagination.scss
|
106
|
+
- _sass/geekyll/bootstrap4alpha4/_popover.scss
|
107
|
+
- _sass/geekyll/bootstrap4alpha4/_print.scss
|
108
|
+
- _sass/geekyll/bootstrap4alpha4/_progress.scss
|
109
|
+
- _sass/geekyll/bootstrap4alpha4/_reboot.scss
|
110
|
+
- _sass/geekyll/bootstrap4alpha4/_responsive-embed.scss
|
111
|
+
- _sass/geekyll/bootstrap4alpha4/_tables.scss
|
112
|
+
- _sass/geekyll/bootstrap4alpha4/_tags.scss
|
113
|
+
- _sass/geekyll/bootstrap4alpha4/_tooltip.scss
|
114
|
+
- _sass/geekyll/bootstrap4alpha4/_type.scss
|
115
|
+
- _sass/geekyll/bootstrap4alpha4/_utilities.scss
|
116
|
+
- _sass/geekyll/bootstrap4alpha4/_variables.scss
|
117
|
+
- _sass/geekyll/bootstrap4alpha4/bootstrap-flex.scss
|
118
|
+
- _sass/geekyll/bootstrap4alpha4/bootstrap-grid.scss
|
119
|
+
- _sass/geekyll/bootstrap4alpha4/bootstrap-reboot.scss
|
120
|
+
- _sass/geekyll/bootstrap4alpha4/bootstrap.scss
|
121
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_alert.scss
|
122
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_background-variant.scss
|
123
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_border-radius.scss
|
124
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_breakpoints.scss
|
125
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_buttons.scss
|
126
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_cards.scss
|
127
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_clearfix.scss
|
128
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_forms.scss
|
129
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_gradients.scss
|
130
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_grid-framework.scss
|
131
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_grid.scss
|
132
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_hover.scss
|
133
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_image.scss
|
134
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_list-group.scss
|
135
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_lists.scss
|
136
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_nav-divider.scss
|
137
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_navbar-align.scss
|
138
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_pagination.scss
|
139
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_progress.scss
|
140
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_pulls.scss
|
141
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_reset-filter.scss
|
142
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_reset-text.scss
|
143
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_resize.scss
|
144
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_screen-reader.scss
|
145
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_size.scss
|
146
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_tab-focus.scss
|
147
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_table-row.scss
|
148
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_tag.scss
|
149
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_text-emphasis.scss
|
150
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_text-hide.scss
|
151
|
+
- _sass/geekyll/bootstrap4alpha4/mixins/_text-truncate.scss
|
152
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_background.scss
|
153
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_clearfix.scss
|
154
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_display.scss
|
155
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_flex.scss
|
156
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_pulls.scss
|
157
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_screenreaders.scss
|
158
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_spacing.scss
|
159
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_text.scss
|
160
|
+
- _sass/geekyll/bootstrap4alpha4/utilities/_visibility.scss
|
161
|
+
- _sass/geekyll/reset.scss
|
162
|
+
- _sass/geekyll/social.scss
|
163
|
+
- screenshot.png
|
164
|
+
homepage: https://github.com/sonirico/geekyll.git
|
165
|
+
licenses:
|
166
|
+
- MIT
|
167
|
+
metadata: {}
|
168
|
+
post_install_message:
|
169
|
+
rdoc_options: []
|
170
|
+
require_paths:
|
171
|
+
- lib
|
172
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
173
|
+
requirements:
|
174
|
+
- - ">="
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: '0'
|
177
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - ">="
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '0'
|
182
|
+
requirements: []
|
183
|
+
rubyforge_project:
|
184
|
+
rubygems_version: 2.6.7
|
185
|
+
signing_key:
|
186
|
+
specification_version: 4
|
187
|
+
summary: Geek jekyll itheme for cool organizations.
|
188
|
+
test_files: []
|