compost-jekyll-theme 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. metadata +1 -2
  3. data/_layouts/licence.html +0 -58
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ac17e3c5c96fa477b4b384d529b393757443cf5ba4fa1f75374a8ff0c110a2b
4
- data.tar.gz: e46d51c389ca4e2558c876d6066cb51a97123ecdd65e7352f409dec47b0acd76
3
+ metadata.gz: 6728d6b7fe00225ad8f79c1e37dd5b0916c7418c73dc60d95cf82eb2b626565b
4
+ data.tar.gz: 775c192c5feedd35571243bb3ef79c3697b146eff81ea413cbbeab96443370a6
5
5
  SHA512:
6
- metadata.gz: fe1dd1817240c858f8a80036ce925c0bac06ed5b0c9748f235cd65851979408c896de0e904b0d668dd845f296c417903aa78a9d95dc890a96a60b32a741ddce1
7
- data.tar.gz: dc357a46a3e6e1bc1dc12c1f6667f9059062a101a50917cdd583109d05d71f1a527e37badbb257c3a17b5d7eb451a845576fc6268318cbdb2fa0b49aac8b0c10
6
+ metadata.gz: 594681fb59049689de3f2048a14079e405170bd37404870772570b486aeaf5b9c190d431ac47b214e9d41c689a6edc633a8686e79d1d0b12af7ed35a7ca5b15e
7
+ data.tar.gz: 36c9de622eba9b69fed041b1c4b89e67e7dc144652898768186957234577a039eb99dd0ab64098b917303cb5ec3ae38ac4b206e77926c1c39de7ce68bb4dbee1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compost-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sutty
@@ -377,7 +377,6 @@ files:
377
377
  - _layouts/default.html
378
378
  - _layouts/default_with_menu.html
379
379
  - _layouts/home.html
380
- - _layouts/licence.html
381
380
  - _layouts/license.html
382
381
  - _layouts/post.html
383
382
  - _layouts/privacy_policy.html
@@ -1,58 +0,0 @@
1
- ---
2
- layout: "default_with_menu"
3
- ---
4
-
5
- {%- assign about = site.posts | find: "layout", "about" -%}
6
- {%- assign back_covers = site.posts | where: "layout", "back_cover" -%}
7
- {%- assign posts = site.posts | where: "layout", "post" | concat: back_covers -%}
8
- {%- assign authors = site.posts | where: "layout", "author" -%}
9
- {%- assign prev = page | prev: posts -%}
10
- {%- assign next = page | next: posts -%}
11
-
12
- <article id="{{ page.slug }}" class="container mx-auto max-w-780px my-4 px-20">
13
- {% include picture.html src=page.image.path alt=page.image.description width=780 img_class="w-100 shadow" %}
14
-
15
- <div class="mt-5">
16
- {% include headings/h1.html class="text-uppercase black hover-black letter-spacing-4 font-weight-bold mb-12" text=page.title %}
17
-
18
- {% if page.subtitle %}
19
- {% include headings/h2.html class="text-uppercase letter-spacing-8 mb-20" text=page.subtitle %}
20
- {% endif %}
21
-
22
- {% unless page.authors == empty %}
23
- <p class="lead text-uppercase letter-spacing-5">
24
- {% for author in page.authors %}
25
- {{ author.title }}{% unless forloop.last %} {{ site.i18n.and }} {% endunless %}
26
- {% endfor %}
27
- </p>
28
- {% endunless %}
29
-
30
- <div
31
- class="source-serif lead-md pt-20 content"
32
- data-controller="footnotes"
33
- data-action="resize@window->footnotes#resize"
34
- data-footnotes-container-width-value="{{ site.data.theme.footnotes_container_width }}"
35
- data-footnotes-sidenote-width-value="{{ site.data.theme.footnotes_sidenote_width }}"
36
- data-footnotes-padding-left-value="{{ site.data.theme.footnotes_padding_left }}"
37
- data-footnotes-offset-left-value="{{ site.data.theme.footnotes_offset_left }}"
38
- data-footnotes-footnote-class="{{ site.data.theme.footnotes_footnote_class | join: " " }}"
39
- data-footnotes-footnote-toggled-class="{{ site.data.theme.footnotes_footnote_toggled_class | join: " " }}"
40
- data-footnotes-sidenote-class="{{ site.data.theme.footnotes_sidenote_class | join: " " }}">
41
- {{ content }}
42
- </div>
43
- </div>
44
-
45
- <footer class="d-flex flex-column align-items-center mt-60">
46
- {% unless page.authors == empty or page.show_biography == false %}
47
- {% for author in page.authors %}
48
- {% include biography.html text=author.content %}
49
- {% endfor %}
50
- {% endunless %}
51
-
52
- {% if page.license %}
53
- {% include license_block.html title=page.license content=about.license %}
54
- {% endif %}
55
-
56
- {% include navigation_post.html src_previous="public/arrow_previous.png" src_home="public/home.png" src_next="public/arrow_next.png" href_previous=prev.url href_home="?#" href_next=next.url %}
57
- </footer>
58
- </article>