compost-jekyll-theme 0.1.4 → 0.1.6

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
  SHA256:
3
- metadata.gz: 9ac17e3c5c96fa477b4b384d529b393757443cf5ba4fa1f75374a8ff0c110a2b
4
- data.tar.gz: e46d51c389ca4e2558c876d6066cb51a97123ecdd65e7352f409dec47b0acd76
3
+ metadata.gz: 020303b6dacbc68a50ee1503cdc4c8d4c5858a7ecfa48c0ad03fb7e80f9d4cf2
4
+ data.tar.gz: e8827c305df05e31dd4e731af50eb629410e1d128c1a1cb137b54c6f343181b8
5
5
  SHA512:
6
- metadata.gz: fe1dd1817240c858f8a80036ce925c0bac06ed5b0c9748f235cd65851979408c896de0e904b0d668dd845f296c417903aa78a9d95dc890a96a60b32a741ddce1
7
- data.tar.gz: dc357a46a3e6e1bc1dc12c1f6667f9059062a101a50917cdd583109d05d71f1a527e37badbb257c3a17b5d7eb451a845576fc6268318cbdb2fa0b49aac8b0c10
6
+ metadata.gz: 601747cfccc37f614fb2670bb036f2b51bd29ea9f7c7b888de8606eaa6b83df7bdf7ea5f1110f1f13ee88cef76252efb24043aeb0d0052b88efe475679fdc171
7
+ data.tar.gz: 0eff9963ddb18485fc5ecb32514d70fb4128b2b9a92b933d7e08020fbe5b1bc83e3329ae4b040350ce216b6b990afebf811fbe8afc945eb13e0fa0b78a127425
@@ -13,7 +13,7 @@ description:
13
13
  required: true
14
14
  label:
15
15
  es: "Descripción del proyecto"
16
- en: "Proyect description"
16
+ en: "Project description"
17
17
  help:
18
18
  es: ""
19
19
  en: ""
metadata CHANGED
@@ -1,14 +1,14 @@
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.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sutty
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-30 00:00:00.000000000 Z
11
+ date: 2023-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -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>