compost-jekyll-theme 0.4.5 → 0.4.6
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/_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: a8acc2b3cd4e5b136383eaee5194ec40e29f6297392a2b3cd3fccc0d2e82797b
|
4
|
+
data.tar.gz: c7ac01471f8ccc88e2ed9ad74c9a370b6ec78d5a65142643055ebb0fdd92397f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b1cc2791a3b4529c3f8d90f858405197ce568bc1828dee5c43b12fb43982092dd382955fc185ca6c986d7a90946881572ccaccf862d5d77d64754e9f016664b
|
7
|
+
data.tar.gz: 2bf70211bddd13c3611407ce59e0d57cd4e5bdf34955d1d0419f83c53de33c40d6a2ba5cc94d6e3a13a61726456debba770d9958aa9f1c5ce1e246d66858f1f6
|
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/_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
|
|