classic-jekyll-theme 2.1.1 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8e1bf518a8ffce59e0a02b3da23ddda8742fb32e
4
- data.tar.gz: 75212966a19491460977a8a006e3a1b617648a1c
3
+ metadata.gz: 2e130386a4b59daeb06fdff06e7d34b5b46c3b59
4
+ data.tar.gz: f041a4ec4dc3322e8ff66e957ffbdd1be9a82c05
5
5
  SHA512:
6
- metadata.gz: a7d9fbafc2053ea7b8e4166946d90ffae96c5e8638227dc1eea75342bb394b11411e5a2d86f1b1fb8d1f556f28938767a00ccd912591e0dbe29ac0d1b61e6cc3
7
- data.tar.gz: a22270741944444d1fb5d13d8857f6d079c8a6d461b3dd3f4b28be775431b92d8259126dce7f268fd34d1609077f97eb2e1ad762c5f44f6bb58263f9a46757dd
6
+ metadata.gz: b7208c2eb8e0c7e1e23cbbb017a4cd1fa23009757ff909a2edcd33fe6f99ef54cea54640c9d3c411fe5cd2b7f18b246b256eb63b254730db5d6e5dc282b12e42
7
+ data.tar.gz: a6c28389ba17eac261c3323c318701fe03378e021b36e9ef406e4d49ad2b9ec8770c5e27e1255d9441df3c5d220560cae08f48d2ded6b3fbc36d6a90318cfa07
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Classic-Jekyll-Theme v2.1.1
1
+ # Classic-Jekyll-Theme v2.2.0
2
2
 
3
3
  Welcome to Classic-Jekyll-Theme. This theme centers around one of the most used website structures on the web. A banner, navigation menu (dropdown), (up to) three columns and a footer. The design is fully responsive for three different screen widths: widest, medium and narrow. It is probably best shown in an example:
4
4
 
@@ -82,6 +82,7 @@ Please see [http://balancingrock.github.io/classic-jekyll-theme](http://balancin
82
82
 
83
83
  Release 2.0.0 (2017-12-19)
84
84
  [Release 2.1.1 (2018-01-22)](http://balancingrock.github.io/classic-jekyll-theme/classic/2017/12/22/bugfix-2-1.html)
85
+ [Release 2.2.0 (2018-02-02)](http://balancingrock.github.io/classic-jekyll-theme/classic/2017/12/22/release-2-2-0.html)
85
86
 
86
87
  ## Suport & Feedback
87
88
 
@@ -76,6 +76,7 @@ enable-cookies-policy: no
76
76
  # for 'top-fixed'. (See classic-jekyll-theme.scss)
77
77
  #
78
78
  # Hint 1: When the 'top-fixed' is used a background color should be specified for the banner and menu.
79
+ # Hint 2: It is recommended not to use the youtube-player widget when using 'top-fixed'. Because the youtube-player widget will scroll in front of the banner.
79
80
  #
80
81
  banner-position: top
81
82
 
@@ -141,9 +141,9 @@
141
141
  {%- endif -%}
142
142
 
143
143
  {%- comment -%}<!-- Create top menu item -->{%- endcomment %}
144
- <input type="checkbox" id="{{ topTitle | append:'-checkbox'}}">
144
+ <input type="checkbox" id="{{ topTitle | replace:' ','-' | append:'-checkbox'}}">
145
145
  <div class="title">
146
- <label class="symbol" for="{{ topTitle | append:'-checkbox'}}">
146
+ <label class="symbol" for="{{ topTitle | replace:' ','-' | append:'-checkbox'}}">
147
147
  {%- if sortedSubMenuTitles.size > 0 %}
148
148
  <p class="code"><!-- will be filled by disclosure indicator --></p>
149
149
  {%- else %}
@@ -196,8 +196,23 @@
196
196
  {%- else %}
197
197
  <div class="dropdown-narrow">
198
198
  {%- endif -%}
199
+
200
+ {%- assign processedSubMenuTitles = "" | split: "" -%}
201
+
199
202
  {%- for subMenuTitle in sortedSubMenuTitles %}
200
-
203
+
204
+ {%- comment -%}<!-- Do not build the same sub menu item twice -->{%- endcomment -%}
205
+
206
+ {%- assign subMenuTitleProcessed = false -%}
207
+ {%- for smt in processedSubMenuTitles -%}
208
+ {%- if smt == subMenuTitle -%}{% assign subMenuTitleProcessed = true -%}{%- endif -%}
209
+ {%- endfor -%}
210
+ {%- if subMenuTitleProcessed -%}
211
+ {%- continue -%}
212
+ {%- else -%}
213
+ {%- assign processedSubMenuTitles = processedSubMenuTitles | push: subMenuTitle -%}
214
+ {%- endif -%}
215
+
201
216
  {%- comment -%}<!-- Build the sub-sub tables for {{ subMenuTitle }} -->{%- endcomment -%}
202
217
 
203
218
  {% assign subsubMenuTitles = "" | split: "" -%}
@@ -278,7 +293,7 @@
278
293
  <div class="subitem isActiveSelection">
279
294
  {%- else -%}
280
295
  {%- assign urlFound = false -%}
281
- {%- for url in sortedSubSubMenuUrls -%}
296
+ {%- for url in sortedSubsubMenuUrls -%}
282
297
  {%- if url == page.url -%}{%- assign urlFound = true -%}{%- endif -%}
283
298
  {%- endfor -%}
284
299
  {%- if urlFound %}
@@ -287,9 +302,9 @@
287
302
  <div class="subitem">
288
303
  {%- endif -%}
289
304
  {%- endif %}
290
- <input type="checkbox" id="{{ subMenuTitle | append:'-checkbox'}}">
305
+ <input type="checkbox" id="{{ subMenuTitle | replace:' ','-' | append:'-checkbox'}}">
291
306
  <div class="title">
292
- <label class="symbol" for="{{ subMenuTitle | append:'-checkbox'}}">
307
+ <label class="symbol" for="{{ subMenuTitle | replace:' ','-' | append:'-checkbox'}}">
293
308
  {%- if sortedSubsubMenuTitles.size > 0 %}
294
309
  <p class="code"><!-- will be filled by disclosure indicator --></p>
295
310
  {%- else %}
@@ -302,7 +317,7 @@
302
317
  </div>
303
318
  {%- else -%}
304
319
  {%- assign urlFound = false -%}
305
- {%- for url in sortedSubSubMenuUrls -%}
320
+ {%- for url in sortedSubsubMenuUrls -%}
306
321
  {%- if url == page.url -%}{%- assign urlFound = true -%}{%- endif -%}
307
322
  {%- endfor -%}
308
323
  {%- if urlFound %}
@@ -310,9 +325,9 @@
310
325
  {%- else %}
311
326
  <div class="subitem">
312
327
  {%- endif %}
313
- <input type="checkbox" id="{{ subMenuTitle | append:'-checkbox'}}">
328
+ <input type="checkbox" id="{{ subMenuTitle | replace:' ','-' | append:'-checkbox'}}">
314
329
  <div class="title">
315
- <label class="symbol" for="{{ subMenuTitle | append:'-checkbox'}}">
330
+ <label class="symbol" for="{{ subMenuTitle | replace:' ','-' | append:'-checkbox'}}">
316
331
  {%- if sortedSubsubMenuTitles.size > 0 %}
317
332
  <p class="code"><!-- will be filled by disclosure indicator --></p>
318
333
  {%- else %}
@@ -116,9 +116,22 @@
116
116
  {%- endfor -%}
117
117
 
118
118
 
119
+ {%- assign processedSubMenuTitles = "" | split: "" -%}
119
120
 
120
121
  {%- for subMenuTitle in sortedSubMenuTitles -%}
121
-
122
+
123
+ {%- comment -%}<!-- Do not build the same sub menu item twice -->{%- endcomment -%}
124
+
125
+ {%- assign subMenuTitleProcessed = false -%}
126
+ {%- for smt in processedSubMenuTitles -%}
127
+ {%- if smt == subMenuTitle -%}{% assign subMenuTitleProcessed = true -%}{%- endif -%}
128
+ {%- endfor -%}
129
+ {%- if subMenuTitleProcessed -%}
130
+ {%- continue -%}
131
+ {%- else -%}
132
+ {%- assign processedSubMenuTitles = processedSubMenuTitles | push: subMenuTitle -%}
133
+ {%- endif -%}
134
+
122
135
  {%- comment -%}<!-- Repeat the above, for the submenu title, building the subsub menu -->{%- endcomment -%}
123
136
 
124
137
  {%- assign subsubMenuTitles = "" | split: "" -%}
@@ -205,12 +218,25 @@
205
218
  </div>
206
219
  </div>
207
220
  {%- else %}
221
+ {%- assign urlFound = false -%}
222
+ {%- for url in sortedSubsubMenuUrls -%}
223
+ {%- if url == page.url -%}{%- assign urlFound = true -%}{%- endif -%}
224
+ {%- endfor -%}
225
+ {%- if urlFound %}
226
+ <div class="sub-isActivePage">
227
+ <div class="disclosure"><p></p></div>
228
+ <div class="title">
229
+ <a href="{{ sortedSubMenuUrls[forloop.index0] | relative_url }}"><p>{{ subMenuTitle }}</p></a>
230
+ </div>
231
+ </div>
232
+ {%- else %}
208
233
  <div class="sub-hasLink">
209
234
  <div class="disclosure"><p></p></div>
210
235
  <div class="title">
211
236
  <a href="{{ sortedSubMenuUrls[forloop.index0] | relative_url }}"><p>{{ subMenuTitle }}</p></a>
212
237
  </div>
213
238
  </div>
239
+ {%- endif -%}
214
240
  {%- endif -%}
215
241
  {%- else %}
216
242
  <div class="sub">
@@ -219,11 +245,11 @@
219
245
  </div>
220
246
  {%- endif -%}
221
247
  {%- else %}
222
- <input type="checkbox" id="{{ subMenuTitle | append:'-vmenu-' | append: include.label-modifier }}">
223
248
  {%- if sortedSubMenuLinks[forloop.index0] != false -%}
224
249
  {%- if sortedSubMenuUrls[forloop.index0] == page.url %}
250
+ <input type="checkbox" id="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}">
225
251
  <div class="sub-isActivePage">
226
- <label class="disclosure show-hover" for="{{ subMenuTitle | append:'-vmenu-' | append: include.label-modifier }}">
252
+ <label class="disclosure show-hover" for="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}">
227
253
  <p class="symbol"><!-- will be filled by disclosure indicator --></p>
228
254
  </label>
229
255
  <div class="title">
@@ -231,18 +257,36 @@
231
257
  </div>
232
258
  </div>
233
259
  {%- else %}
260
+ {%- assign urlFound = false -%}
261
+ {%- for url in sortedSubsubMenuUrls -%}
262
+ {%- if url == page.url -%}{%- assign urlFound = true -%}{%- endif -%}
263
+ {%- endfor -%}
264
+ {%- if urlFound %}
265
+ <input type="checkbox" id="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}" checked>
266
+ <div class="sub-isActivePage">
267
+ <label class="disclosure show-hover" for="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}">
268
+ <p class="symbol"><!-- will be filled by disclosure indicator --></p>
269
+ </label>
270
+ <div class="title">
271
+ <a href="{{ sortedSubMenuUrls[forloop.index0] | relative_url }}"><p>{{ subMenuTitle }}</p></a>
272
+ </div>
273
+ </div>
274
+ {%- else %}
275
+ <input type="checkbox" id="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}">
234
276
  <div class="sub-hasLink">
235
- <label class="disclosure show-hover" for="{{ subMenuTitle | append:'-vmenu-' | append: include.label-modifier }}">
277
+ <label class="disclosure show-hover" for="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}">
236
278
  <p class="symbol"><!-- will be filled by disclosure indicator --></p>
237
279
  </label>
238
280
  <div class="title">
239
281
  <a href="{{ sortedSubMenuUrls[forloop.index0] | relative_url }}"><p>{{ subMenuTitle }}</p></a>
240
282
  </div>
241
283
  </div>
284
+ {%- endif -%}
242
285
  {%- endif -%}
243
286
  {%- else %}
287
+ <input type="checkbox" id="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}">
244
288
  <div class="sub">
245
- <label class="disclosure show-hover" for="{{ subMenuTitle | append:'-vmenu-' | append: include.label-modifier }}">
289
+ <label class="disclosure show-hover" for="{{ subMenuTitle | replace:' ','-' | append:'-vmenu-' | append: include.label-modifier }}">
246
290
  <p class="symbol"><!-- will be filled by disclosure indicator --></p>
247
291
  </label>
248
292
  <div class="title"><p>{{ subMenuTitle }}</p></div>
@@ -131,4 +131,8 @@
131
131
 
132
132
  .highlighter-rouge {
133
133
  background: #fc9;
134
+ }
135
+
136
+ .highlight {
137
+ overflow-x: auto;
134
138
  }
@@ -99,6 +99,21 @@
99
99
  .subsub-isActivePage { display: flex }
100
100
  }
101
101
 
102
+ input:disabled ~ {
103
+
104
+ // Show the correct symbol for this state.
105
+ .sub,
106
+ .sub-hasLink,
107
+ .sub-isActivePage {
108
+ label .symbol:after { content: $vmenu-subitem-disclosure-symbol-closed; }
109
+ }
110
+
111
+ // Show the subsub's
112
+ .subsub,
113
+ .subsub-hasLink,
114
+ .subsub-isActivePage { display: none }
115
+ }
116
+
102
117
  .sub-isActivePage {
103
118
  @include medium-layout { background: $vmenu-subitem-title-background-selected-medium; }
104
119
  @include widest-layout { background: $vmenu-subitem-title-background-selected-widest; }
@@ -0,0 +1,25 @@
1
+ ---
2
+ layout: page
3
+ title: Problems & Workarounds
4
+ date: 2018-02-01
5
+ tertiary-column: none
6
+ menuInclude: yes
7
+ menuTopTitle: Classic
8
+ menuSubs:
9
+ - title: Problems and workarounds
10
+ index: 9
11
+ excerpt: A discussion of problems that might occur and possible work arounds
12
+ ---
13
+ ## Issue 16: Youtube-player widget shows video on top of banner for top-fixed banner layout.
14
+
15
+ Due to the way youtube videos are displayed it is not possible to use the youtube-player.html widget when the banner position is set to top-fixed in the setup.yml file.
16
+
17
+ To include youtube video's use the iframe directly like this:
18
+
19
+ ~~~~
20
+ <iframe src="https://www.youtube.com/embed/video-id" width="100px" height="56.25px"></iframe>
21
+ ~~~~
22
+
23
+ Of course the width and height parameters should be scaled to whatever size is required. Multiples of the values given will result in a HD-aspect ratio.
24
+
25
+ If the youtube-player widget is used for `banner-position: top-fixed`, the site and videos will work as normal. The only problem is that on scrolling the video's may appear to float over the banner (and menubar).
@@ -45,11 +45,11 @@ Use `keep_files` to simply copy over those files. Use `exclude` to complete igno
45
45
 
46
46
  ### Incremental build
47
47
 
48
- Jekyll offers an incremental build option.
48
+ Jekyll offers an incremental build option. This option does not seem to work pre Jekyll 3.7
49
49
 
50
50
  bundle exec jekyll serve --incremental
51
51
 
52
- However in Classic that may not help all that much. Interdependency of the files is such that incremental build don't seem to happen often. Still, we have not found any ill effects. Turning it on may help, or at least it does not seem to hurt.
52
+ Note that the _home_ page is not rebuild when using _incremental_. To see the changes that are made to a post or page, go to that post/page directly.
53
53
 
54
54
  If you find any strange effects/artefacts, be sure to turn this off first.
55
55
 
@@ -12,7 +12,7 @@ secondary-column: left
12
12
  tertiary-column: none
13
13
  excerpt: The banner is placed above the main column only
14
14
  ---
15
- The banner only appears above the main page. To create more space for the banner, the secondary column has been fixed to the left en the tertiary column has been disabled.
15
+ The banner only appears above the main page. To create more space for the banner, the secondary column has been fixed to the left and the tertiary column has been disabled.
16
16
 
17
17
  If the screen is too small, the title will be displayed over the icon.
18
18
 
@@ -4,14 +4,30 @@ menuInclude: yes
4
4
  menuLink: yes
5
5
  menuTopTitle: Menus
6
6
  menuSubs:
7
- - title: Sub Item 3
7
+ - title: Centralized
8
8
  index: 3
9
9
  sub:
10
- - title: sub-sub item 1
11
- - title: sub-sub item 2
10
+ - title: Centralized - Subsub item 1
11
+ index: 1
12
+ url: /pages/menus/subsubmenu3-1.html
13
+ - title: Centralized - Subsub item 2
14
+ index: 2
15
+ url: /pages/menus/subsubmenu3-2.html
12
16
  excerpt: "An excerpt is used as the page description and can be up to 160 characters long..."
13
17
  ---
14
- ### Sub menu 3
18
+ ### Centralized
19
+
20
+ One way to create a subsub-menu structure is 'all in one place'. This file specifies the menu for all items below the section `Centralized`
21
+
22
+ #### Advantage
23
+
24
+ The subsub items of this sub-item do not need a menuSubs entry in their YAML frontmatter.
25
+
26
+ #### Disadvantage
27
+
28
+ The URL of the target must be specified
29
+
30
+ ### YAML
15
31
 
16
32
  The relevant YAML frontmatter for this page is:
17
33
 
@@ -20,11 +36,12 @@ The relevant YAML frontmatter for this page is:
20
36
  menuInclude: yes
21
37
  menuTopTitle: Menus
22
38
  menuSubs:
23
- - title: Sub Item 3
39
+ - title: Centralized
24
40
  index: 3
25
41
  sub:
26
- - title: sub-sub item 1
27
- - title: sub-sub item 2
42
+ - title: Centralized - item 1
43
+ url: /pages/menus/subsubmenu3-1.html
44
+ - title: Centralized - item 2
45
+ url: /pages/menus/subsubmenu3-2.html
28
46
  ---
29
47
 
30
- Note that the sub-sub items don't have their own page, and hence they simply link to this page.
@@ -0,0 +1,36 @@
1
+ ---
2
+ layout: page
3
+ menuInclude: yes
4
+ menuLink: yes
5
+ menuTopTitle: Menus
6
+ menuSubs:
7
+ - title: Decentralized
8
+ index: 4
9
+ excerpt: "An excerpt is used as the page description and can be up to 160 characters long..."
10
+ ---
11
+ ### Decentralized
12
+
13
+ This example creates subsub menu structure by putting all menu creation information for each file in that same file.
14
+
15
+ #### Advantage
16
+
17
+ The subsub menu items do not need to specify a URL.
18
+ The information is localized which makes it easier to find the place where to make a change.
19
+
20
+ #### Disadvantage
21
+
22
+ Multiple files may need to be edited when the menu structure must be changed.
23
+
24
+ ### YAML
25
+
26
+ The relevant YAML frontmatter for this page is:
27
+
28
+ ---
29
+ layout: page
30
+ menuInclude: yes
31
+ menuTopTitle: Menus
32
+ menuSubs:
33
+ - title: Decentralized
34
+ index: 4
35
+ ---
36
+
@@ -0,0 +1,21 @@
1
+ ---
2
+ layout: page
3
+ menuInclude: yes
4
+ menuLink: yes
5
+ menuTopTitle: Menus
6
+ excerpt: "An excerpt is used as the page description and can be up to 160 characters long..."
7
+ ---
8
+ ### Centralized
9
+
10
+ #### Item 1
11
+
12
+ This file does not contain a menuSubs in the YAML frontmatter.
13
+
14
+ The relevant YAML frontmatter for this page is:
15
+
16
+ ---
17
+ layout: page
18
+ menuInclude: yes
19
+ menuTopTitle: Menus
20
+ ---
21
+
@@ -0,0 +1,21 @@
1
+ ---
2
+ layout: page
3
+ menuInclude: yes
4
+ menuLink: yes
5
+ menuTopTitle: Menus
6
+ excerpt: "An excerpt is used as the page description and can be up to 160 characters long..."
7
+ ---
8
+ ### Centralized
9
+
10
+ #### Item 2
11
+
12
+ This file does not contain a menuSubs in the YAML frontmatter.
13
+
14
+ The relevant YAML frontmatter for this page is:
15
+
16
+ ---
17
+ layout: page
18
+ menuInclude: yes
19
+ menuTopTitle: Menus
20
+ ---
21
+
@@ -0,0 +1,31 @@
1
+ ---
2
+ layout: page
3
+ menuInclude: yes
4
+ menuLink: yes
5
+ menuTopTitle: Menus
6
+ menuSubs:
7
+ - title: Decentralized
8
+ sub:
9
+ - title: Decentralized - Item 1
10
+ index: 1
11
+ excerpt: "An excerpt is used as the page description and can be up to 160 characters long..."
12
+ ---
13
+ ### Decentralized
14
+
15
+ #### Item 1
16
+
17
+ This example creates subsub menu structure by putting all menu creation information for each file in that same file.
18
+
19
+ The relevant YAML frontmatter for this page is:
20
+
21
+ ---
22
+ layout: page
23
+ menuInclude: yes
24
+ menuTopTitle: Menus
25
+ menuSubs:
26
+ - title: Decentralized
27
+ sub:
28
+ - title: Item 1
29
+ index: 1
30
+ ---
31
+
@@ -0,0 +1,31 @@
1
+ ---
2
+ layout: page
3
+ menuInclude: yes
4
+ menuLink: yes
5
+ menuTopTitle: Menus
6
+ menuSubs:
7
+ - title: Decentralized
8
+ sub:
9
+ - title: Decentralized - Item 2
10
+ index: 2
11
+ excerpt: "An excerpt is used as the page description and can be up to 160 characters long..."
12
+ ---
13
+ ### Decentralized
14
+
15
+ #### Item 2
16
+
17
+ This example creates subsub menu structure by putting all menu creation information for each file in that same file.
18
+
19
+ The relevant YAML frontmatter for this page is:
20
+
21
+ ---
22
+ layout: page
23
+ menuInclude: yes
24
+ menuTopTitle: Menus
25
+ menuSubs:
26
+ - title: Decentralized
27
+ sub:
28
+ - title: Item 2
29
+ index: 2
30
+ ---
31
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: classic-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rien
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-22 00:00:00.000000000 Z
11
+ date: 2018-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -196,6 +196,7 @@ files:
196
196
  - pages/classic/06-categories.md
197
197
  - pages/classic/07-terminology.md
198
198
  - pages/classic/08-versioning.md
199
+ - pages/classic/09-problems.md
199
200
  - pages/contact/contact.md
200
201
  - pages/cookie-consent/cookie-consent.md
201
202
  - pages/jekyll/01-jekyll.md
@@ -214,6 +215,11 @@ files:
214
215
  - pages/menus/submenu1.md
215
216
  - pages/menus/submenu2.md
216
217
  - pages/menus/submenu3.md
218
+ - pages/menus/submenu4.md
219
+ - pages/menus/subsubmenu3-1.md
220
+ - pages/menus/subsubmenu3-2.md
221
+ - pages/menus/subsubmenu4-1.md
222
+ - pages/menus/subsubmenu4-2.md
217
223
  homepage: https://rubygems.org/gems/classic-jekyll-theme
218
224
  licenses:
219
225
  - MIT
@@ -234,7 +240,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
234
240
  version: '0'
235
241
  requirements: []
236
242
  rubyforge_project:
237
- rubygems_version: 2.5.2
243
+ rubygems_version: 2.6.8
238
244
  signing_key:
239
245
  specification_version: 4
240
246
  summary: A responsive 1, 2 or 3 column theme for wide, medium and narrow displays