compost-jekyll-theme 0.4.5 → 0.4.7
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/goal.yml +13 -0
- data/_data/layouts/theme.yml +0 -10
- data/_layouts/support.html +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0abc064d866062f4242ae405b9d8567c701f4e2c134276aeb4650c102225a2d9
|
4
|
+
data.tar.gz: 56905a68bb5b1f32e1f994b52f1c7cbcea0b93a2d2b57cf846d8e8021602bf08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da3d9046bf22d5839b6827bd0965727d77d947dfc86b521db9db801dac2cf467591e4f01feed21b9397cfc5af12ae5d61ee863836b7bec1e8e6abf4816d134f4
|
7
|
+
data.tar.gz: feed508c2fcc83d430f98893e88db7346c7a7a2456e82195f3f9a4c3681af68c504022fdbd5bf2a1c326d2441c5e7c50f92b9f710a3460f70f13249506fcd265
|
data/_data/layouts/goal.yml
CHANGED
@@ -15,8 +15,21 @@ description:
|
|
15
15
|
help:
|
16
16
|
en: ""
|
17
17
|
es: ""
|
18
|
+
value_now:
|
19
|
+
type: "float"
|
20
|
+
required: true
|
21
|
+
label:
|
22
|
+
en: "The current amount for this goal"
|
23
|
+
es: "Monto actual del objetivo"
|
24
|
+
help:
|
25
|
+
en: ""
|
26
|
+
es: ""
|
27
|
+
default:
|
28
|
+
en: 0
|
29
|
+
es: 0
|
18
30
|
value_max:
|
19
31
|
type: "float"
|
32
|
+
required: true
|
20
33
|
label:
|
21
34
|
en: "The maximum amount for this goal"
|
22
35
|
es: "Monto máximo del objetivo"
|
data/_data/layouts/theme.yml
CHANGED
@@ -360,16 +360,6 @@ divider_image:
|
|
360
360
|
help:
|
361
361
|
es: "Separa el contenido del inicio de la lista de artículos. Ancho 150px."
|
362
362
|
en: "Separates home content from article list. 150px wide."
|
363
|
-
support_image:
|
364
|
-
type: "image"
|
365
|
-
path:
|
366
|
-
label:
|
367
|
-
es: "Imagen del botón de donaciones"
|
368
|
-
en: "Donations button image"
|
369
|
-
description:
|
370
|
-
label:
|
371
|
-
es: "Descripción de la imagen"
|
372
|
-
en: "Image description"
|
373
363
|
locales:
|
374
364
|
type: "locales"
|
375
365
|
label:
|
data/_layouts/support.html
CHANGED
@@ -39,7 +39,7 @@ layout: "default_with_menu"
|
|
39
39
|
|
40
40
|
<div class="my-4">
|
41
41
|
{% for goal in goals %}
|
42
|
-
{% include goal.html title=goal.title text=goal.description value_now=
|
42
|
+
{% include goal.html title=goal.title text=goal.description value_now=goal.value_now value_max=goal.value_max currency=goal.currency %}
|
43
43
|
{% endfor %}
|
44
44
|
</div>
|
45
45
|
|