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.
- checksums.yaml +4 -4
- metadata +1 -2
- data/_layouts/licence.html +0 -58
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6728d6b7fe00225ad8f79c1e37dd5b0916c7418c73dc60d95cf82eb2b626565b
|
4
|
+
data.tar.gz: 775c192c5feedd35571243bb3ef79c3697b146eff81ea413cbbeab96443370a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
+
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
|
data/_layouts/licence.html
DELETED
@@ -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>
|