classic-jekyll-theme 1.8.2 → 1.8.3
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 +4 -4
- data/README.md +9 -1
- data/_layouts/default.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9ece3b4bf182f0d1806fe322003acc2c035ddb5
|
|
4
|
+
data.tar.gz: 507fadad0557cf8817808a653f8ae1c3c7710384
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bde7ad02d8be69c3747274b5128b679f8b6f4fe2808b4a829edd961c6f24a78dc7a55334a922c3018d00ca00c6c1b72a41fc6a6e98fbd5634ae5120c19e8c77a
|
|
7
|
+
data.tar.gz: 990e5b26ead6d726a469d10cb3ba255ba678467da55aa8da8a0dd186c2cf0d57dafcbf384a6fbbcf580364cbdf1e5da1ff825e3b3536986f4f337b00a53d5e60
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Classic-Jekyll-Theme v1.8.
|
|
1
|
+
# Classic-Jekyll-Theme v1.8.3
|
|
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: wide, medium and narrow. It is probably best shown in an example:
|
|
4
4
|
|
|
@@ -392,6 +392,10 @@ Release 1.8.2
|
|
|
392
392
|
|
|
393
393
|
- Quickfix for screwup in 1.8.1
|
|
394
394
|
|
|
395
|
+
Release 1.8.3
|
|
396
|
+
|
|
397
|
+
- Bugfix: corrected a liquid error in `/_layout/default.html`
|
|
398
|
+
|
|
395
399
|
## Upgrade information
|
|
396
400
|
|
|
397
401
|
### from 0.2.6 to 1.0.0
|
|
@@ -586,6 +590,10 @@ The index for a menu item. If not present, the menu ordering is undetermined. If
|
|
|
586
590
|
|
|
587
591
|
- The file `_includes/navbanner.html` was changed.
|
|
588
592
|
|
|
593
|
+
### from 1.8.2 to 1.8.3
|
|
594
|
+
|
|
595
|
+
- The file `_layouts/default.html` was changed (3rd line, replaced {{ with {% and }} with %})
|
|
596
|
+
|
|
589
597
|
## Feedback
|
|
590
598
|
|
|
591
599
|
Comments, bug reports, feature requests and improvements are eagerly anticipated via email: rien@balancingrock.nl.
|
data/_layouts/default.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
{% if page.secondary-column %}{% if page.secondary-column == 'left' %}{% assign secondary-column = 'left' %}{% endif %}{% if page.secondary-column == 'right' %}{% assign secondary-column = 'right' %}{% endif %}{% else %}{% if site.data.setup.secondary-column == 'left' %}{% assign secondary-column = 'left' %}{% endif %}{% if site.data.setup.secondary-column == 'right' %}{% assign secondary-column = 'right' %}{% endif %}{% endif %}
|
|
3
|
-
{% if page.secondary-column-content %}{% assign secondary-column-content = {
|
|
3
|
+
{% if page.secondary-column-content %}{% assign secondary-column-content = {% page.secondary-column-content %} %}{% else %}{% assign secondary-column-content = 'secondary-column.html' %}{% endif %}
|
|
4
4
|
{% if page.tertiary-column %}{% if page.tertiary-column == 'present' %}{% assign tertiary-column = 'present' %}{% endif %}{% else %}{% if site.data.setup.tertiary-column == 'present' %}{% assign tertiary-column = 'present' %}{% endif %}{% endif %}
|
|
5
5
|
{% if page.tertiary-column-content %}{% assign tertiary-column-content = page.tertiary-column-content %}{% else %}{% assign tertiary-column-content = 'tertiary-column.html' %}{% endif %}
|
|
6
6
|
{% if page.navbanner-position %}{% assign navbanner-position = page.navbanner-position %}{% else %}{% assign navbanner-position = site.data.setup.navbanner-position %}{% endif %}
|
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: 1.8.
|
|
4
|
+
version: 1.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rien
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll-feed
|