compost-jekyll-theme 0.4.4 → 0.4.5
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/_data/layouts/support.yml +34 -0
- data/_includes/divider.html +3 -1
- data/_includes/header.html +4 -0
- data/_includes/header_toggler.html +5 -3
- data/_layouts/default_with_menu.html +2 -2
- data/_layouts/home.html +7 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6880b231456b8811d9be96a52d0d2a2dce239256f30ae0a39833e9b7555db35
|
4
|
+
data.tar.gz: 4653dba5fdefaa54459c9cb176376a7ba3717cdd06a108cdf675687d2d090413
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a45db7b5075973d87d227ed94f292b3f575451de9094561837bcf1b9cf25583f8f751a1281f9a81fef22b37c6a075c9e3ddaea509e95df97c3f81444ed711eea
|
7
|
+
data.tar.gz: f876359031159dd375a0680ca698b271b066da9f11c07f8216b3b5e739fd8bfc704261cab154eb60228333572fd27a081d343f055fc7f3a234d81169550096a6
|
data/_data/layouts/support.yml
CHANGED
@@ -25,6 +25,40 @@ description:
|
|
25
25
|
engines. If the post is about violence and other sensitive
|
26
26
|
topics, we invite you to use it as a content warning, so others
|
27
27
|
can decide when they want to read it.
|
28
|
+
image_menu_close:
|
29
|
+
type: "image"
|
30
|
+
required: true
|
31
|
+
path:
|
32
|
+
label:
|
33
|
+
es: "Logo de apóyanos con el menú cerrado"
|
34
|
+
en: "Support us logo with menu closed"
|
35
|
+
help:
|
36
|
+
es: "Máximo 220px de ancho y 90px de alto"
|
37
|
+
en: "Max. 220px width by 90px height"
|
38
|
+
description:
|
39
|
+
label:
|
40
|
+
es: "Descripción del logo"
|
41
|
+
en: "Logo description"
|
42
|
+
help:
|
43
|
+
es: "Describí la imagen por razones de accesibilidad e indexacion en buscadores"
|
44
|
+
en: "Describe the image for accesibility purposes and for indexation in search engines"
|
45
|
+
image_menu_open:
|
46
|
+
type: "image"
|
47
|
+
required: true
|
48
|
+
path:
|
49
|
+
label:
|
50
|
+
es: "Logo de apóynaos con menú abierto"
|
51
|
+
en: "Support us logo with menu opened"
|
52
|
+
help:
|
53
|
+
es: ""
|
54
|
+
en: ""
|
55
|
+
description:
|
56
|
+
label:
|
57
|
+
es: "Descripción del logo"
|
58
|
+
en: "Logo description"
|
59
|
+
help:
|
60
|
+
es: "Describí la imagen por razones de accesibilidad e indexacion en buscadores"
|
61
|
+
en: "Describe the image for accesibility purposes and for indexation in search engines"
|
28
62
|
section_1:
|
29
63
|
type: "new_html"
|
30
64
|
label:
|
data/_includes/divider.html
CHANGED
@@ -8,7 +8,9 @@
|
|
8
8
|
<div class="d-flex flex-row justify-content-center align-items-center">
|
9
9
|
<div class="border-bottom-dashed border-black flex-grow-1 my-2"></div>
|
10
10
|
|
11
|
-
{%
|
11
|
+
{% if include.src %}
|
12
|
+
{% include picture.html src=include.src alt=include.alt width=150 %}
|
13
|
+
{% endif %}
|
12
14
|
|
13
15
|
<div class="border-bottom-dashed border-black flex-grow-1 my-2"></div>
|
14
16
|
</div>
|
data/_includes/header.html
CHANGED
@@ -60,9 +60,11 @@
|
|
60
60
|
</div>
|
61
61
|
{% endfor %}
|
62
62
|
|
63
|
-
|
64
|
-
|
65
|
-
|
63
|
+
{% if back_cover %}
|
64
|
+
<div class="col pb-5">
|
65
|
+
{% include cover_post/menu.html title=back_cover.title src=back_cover.image.path alt=back_cover.image.description href=back_cover.url %}
|
66
|
+
</div>
|
67
|
+
{% endif %}
|
66
68
|
</div>
|
67
69
|
</div>
|
68
70
|
|
@@ -10,10 +10,10 @@ layout: "default"
|
|
10
10
|
include header_toggler.html
|
11
11
|
logo_open_src=about.image_menu_open.path
|
12
12
|
logo_open_alt=about.image_menu_open.description
|
13
|
-
btn_open_src=
|
13
|
+
btn_open_src=support.image_menu_open.path
|
14
14
|
logo_close_src=about.image_menu_close.path
|
15
15
|
logo_close_alt=about.image_menu_close.description
|
16
|
-
btn_close_src=
|
16
|
+
btn_close_src=support.image_menu_close.path
|
17
17
|
btn_href=support.url
|
18
18
|
btn_alt=site.i18n.support_alt
|
19
19
|
background_class="pt-3 px-2 pb-100 background-image-menu-close background-position-center-bottom w-100 background-size-auto-100"
|
data/_layouts/home.html
CHANGED
@@ -15,9 +15,8 @@ layout: "default_with_menu"
|
|
15
15
|
subtitle=front_cover.subtitle
|
16
16
|
content=front_cover.content
|
17
17
|
%}
|
18
|
-
|
19
|
-
|
20
|
-
{% endif %}
|
18
|
+
|
19
|
+
{% include divider.html src=theme.divider_image.path alt=site.i18n.divider %}
|
21
20
|
|
22
21
|
<article class="row row-cols-1 row-cols-md-2 row-cols-lg-3 container-lg mx-auto">
|
23
22
|
{% for post in posts %}
|
@@ -34,8 +33,10 @@ layout: "default_with_menu"
|
|
34
33
|
</div>
|
35
34
|
{% endfor %}
|
36
35
|
|
37
|
-
|
38
|
-
|
39
|
-
|
36
|
+
{%- if back_cover -%}
|
37
|
+
<div class="col pb-5 px-2">
|
38
|
+
{% include cover_post/home.html title=back_cover.title src=back_cover.image.path alt=back_cover.image.description href=back_cover.url description=back_cover.description %}
|
39
|
+
</div>
|
40
|
+
{%- endif -%}
|
40
41
|
</article>
|
41
42
|
</div>
|
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.4.
|
4
|
+
version: 0.4.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sutty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|