jekyll-rebellion 0.2 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 204c8cdf810d6aa67b2e6b43a9fa9c80c8f868e5f5d923571c096e576bdbcee7
4
- data.tar.gz: 0a9408cb7ca2d211e33621a84453be52b0c74c5b47cf8d8bcdfad7386f64f7fb
3
+ metadata.gz: 5166e99731ff16192438618828fe03296db3a961742f8a03ff4400cf11856b2d
4
+ data.tar.gz: ba8478d2b826945bcd2910dc8fd9013221a1560a4d300a80502503df32f1e49c
5
5
  SHA512:
6
- metadata.gz: 59c87be691aa45f34ee42bebf32771b42a9cc13d9c6f61373d1b5ea81771c24e359a5d4e3750c9515d3b0d79edd02902377aca9f55eeaceafbb19f120892cbcd
7
- data.tar.gz: 975fb1248f31cb29762d3a4f2a0257ceb988032afecf3345c7b065539956e544eb4e3b2f6421acd7e806f6c64a25d2cad06ae15b17fa443e78556a2434d88c55
6
+ metadata.gz: 9bc108128f2a663d5dab098a88fc78801e0ce6a3057645f264deec53b79204d6e35213997f14fd0f81701461fbafb5cb5b6cb480cf15a3c76c6ca8012ae239c2
7
+ data.tar.gz: e053f2d67fafe007ea20849a4efb99fefe42f961c6a2d628ab24a66bb40be20af19da060a52d499906f0b27011bd8e81ef0ef3fdcef24c7966ea9a003747bcd3
@@ -58,13 +58,17 @@
58
58
  {% else %}
59
59
  {% if this_year != next_year %}
60
60
  </div>
61
+ {% comment %}
61
62
  <h2 id="{{ next_year }}-ref">{{next_year}}</h2>
62
63
  <h3 id="{{ next_year }}-{{ next_month }}-ref">{{ next_month }}</h3>
64
+ {% endcomment %}
63
65
  <div class="Rebellion-Blog-List">
64
66
  {% else %}
65
67
  {% if this_month != next_month %}
66
68
  </div>
69
+ {% comment %}
67
70
  <h3 id="{{ this_year }}-{{ next_month }}-ref">{{ next_month }}</h3>
71
+ {% endcomment %}
68
72
  <div class="Rebellion-Blog-List">
69
73
  {% endif %}
70
74
  {% endif %}
@@ -31,13 +31,16 @@
31
31
 
32
32
  </div>
33
33
  <div class="col">
34
+ {% for page in site.footer_include_pages %}
35
+ <a class="page-link" href="{{ page.url }}">{{ page.title | escape }}</a>
36
+ {% endfor %}
34
37
  {%- for path in page_paths -%}
35
- {%- assign my_page = site.pages | where: "path", path | first -%}
36
- {%- if my_page.footer_nav_include -%}
37
- {%- if my_page.title -%}
38
- <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
39
- {%- endif -%}
40
- {% endif %}
38
+ {%- assign my_page = site.pages | where: "path", path | first -%}
39
+ {%- if my_page.footer_nav_include -%}
40
+ {%- if my_page.title -%}
41
+ <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
42
+ {%- endif -%}
43
+ {% endif %}
41
44
  {%- endfor -%}
42
45
  </div>
43
46
  </nav>
@@ -1,4 +1,4 @@
1
- <head>
1
+ <head lang="en-GB">
2
2
  <meta charset="utf-8">
3
3
  <meta name="viewport" content="width=device-width, initial-scale=1">
4
4
  <link href="https://fonts.googleapis.com/css?family=Crimson+Text:400,700&display=swap" rel="stylesheet">
@@ -38,6 +38,7 @@ $rounding: 5px;
38
38
  "rebellion/base",
39
39
  "rebellion/header",
40
40
  "rebellion/footer",
41
- "rebellion/content"
41
+ "rebellion/content",
42
+ "rebellion/print"
42
43
  ;
43
44
 
@@ -0,0 +1,21 @@
1
+ @media print
2
+ {
3
+ body {
4
+ font-size: 12pt;
5
+ }
6
+ .Rebellion-Header, .Rebellion-Footer, .Rebellion-Big-Picture, .Rebellion-Half-Picture{
7
+ display: none;
8
+ }
9
+ .Rebellion-Wrapper-Wide, .Rebellion-Wrapper-Narrow {
10
+ padding-left: 0;
11
+ padding-right: 0;
12
+ max-width: none;
13
+
14
+ }
15
+ .Rebellion-Section {
16
+ padding: 3em 0;
17
+ }
18
+ body {
19
+ display: block;
20
+ }
21
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-rebellion
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.2'
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Gundry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-23 00:00:00.000000000 Z
11
+ date: 2019-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -95,6 +95,7 @@ files:
95
95
  - _sass/rebellion/footer.scss
96
96
  - _sass/rebellion/header.scss
97
97
  - _sass/rebellion/mobile-header.scss
98
+ - _sass/rebellion/print.scss
98
99
  - assets/css/rebellion-style.scss
99
100
  - assets/css/style.scss
100
101
  - assets/fucxedcaps-v2-webfont.woff