bulma-clean-theme 1.3.0 → 1.3.1
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/_layouts/product.html +24 -0
- data/node_modules/.package-lock.json +2 -1
- data/package-lock.json +2 -1
- 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: f630cd1d2e5cdca845087ba8febe71afa7558a748a0432e74052f694214dc3f4
|
|
4
|
+
data.tar.gz: d3192f7bfbec4ee201fb341d138c1d38743c21cfa193a5aa58b5ad2f8cec75f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 040a32e38f13c23fa1197457fe078803c64420590b77189d318b7c81c160474ac7d3c98cf52da550b170861f8ae878ab216942d63d56ac648511907ea3aae6a6
|
|
7
|
+
data.tar.gz: 39d9b778a157be38c64fdc342ffcffb61a9dc07e04ea1e6e01f0743cbc58498eef638d768bc509a60af799af72c2b5b07f43ed10b1d1ee994a1368577ce920c1
|
data/_layouts/product.html
CHANGED
|
@@ -36,6 +36,30 @@ layout: default
|
|
|
36
36
|
{% endfor %}
|
|
37
37
|
</div>
|
|
38
38
|
{% endif %}
|
|
39
|
+
|
|
40
|
+
{% if page.buttons %}
|
|
41
|
+
<div class="is-flex is-justify-content-flex-end mt-4">
|
|
42
|
+
<div class="buttons">
|
|
43
|
+
{% for button in page.buttons %}
|
|
44
|
+
{% if button.image %}
|
|
45
|
+
<a href="{{ button.url }}" {% if button.class %} class="{{ button.class }}" {% endif %}>
|
|
46
|
+
<img src="{{ button.image }}" alt="{{ button.text | default: 'Buy it' }}" style="max-height: 60px;">
|
|
47
|
+
<span class="is-sr-only">{{ button.text | default: 'Buy it' }}</span>
|
|
48
|
+
</a>
|
|
49
|
+
{% else %}
|
|
50
|
+
<a href="{{ button.url }}" class="button {% if button.class %} {{ button.class }} {% else %} is-primary {% endif %} is-medium">
|
|
51
|
+
{% if button.icon %}
|
|
52
|
+
<span class="icon">
|
|
53
|
+
<i class="fas {{ button.icon }}"></i>
|
|
54
|
+
</span>
|
|
55
|
+
{% endif %}
|
|
56
|
+
<span>{{ button.text | default: 'Buy it' }}</span>
|
|
57
|
+
</a>
|
|
58
|
+
{% endif %}
|
|
59
|
+
{% endfor %}
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
|
+
{% endif %}
|
|
39
63
|
</div>
|
|
40
64
|
|
|
41
65
|
<div class="column is-12">
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"node_modules/bulma": {
|
|
8
8
|
"version": "1.0.4",
|
|
9
9
|
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.4.tgz",
|
|
10
|
-
"integrity": "sha512-Ffb6YGXDiZYX3cqvSbHWqQ8+LkX6tVoTcZuVB3lm93sbAVXlO0D6QlOTMnV6g18gILpAXqkG2z9hf9z4hCjz2g=="
|
|
10
|
+
"integrity": "sha512-Ffb6YGXDiZYX3cqvSbHWqQ8+LkX6tVoTcZuVB3lm93sbAVXlO0D6QlOTMnV6g18gILpAXqkG2z9hf9z4hCjz2g==",
|
|
11
|
+
"license": "MIT"
|
|
11
12
|
}
|
|
12
13
|
}
|
|
13
14
|
}
|
data/package-lock.json
CHANGED
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"node_modules/bulma": {
|
|
17
17
|
"version": "1.0.4",
|
|
18
18
|
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.4.tgz",
|
|
19
|
-
"integrity": "sha512-Ffb6YGXDiZYX3cqvSbHWqQ8+LkX6tVoTcZuVB3lm93sbAVXlO0D6QlOTMnV6g18gILpAXqkG2z9hf9z4hCjz2g=="
|
|
19
|
+
"integrity": "sha512-Ffb6YGXDiZYX3cqvSbHWqQ8+LkX6tVoTcZuVB3lm93sbAVXlO0D6QlOTMnV6g18gILpAXqkG2z9hf9z4hCjz2g==",
|
|
20
|
+
"license": "MIT"
|
|
20
21
|
}
|
|
21
22
|
}
|
|
22
23
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bulma-clean-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- chrisrhymes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|