bulma-clean-theme 1.2.1 → 1.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 46db08b91dcf6c4637afc4c7ab7a0c88b9855ae13b5963d62e6ca81a2a2cb3b9
4
- data.tar.gz: 705af2e4a4b4a8cb30928a4e599f97e8b0ed0a62964746e41c95e87251585e9b
3
+ metadata.gz: 3631b6b0402c3b5d9e3d7184d94d92bf2e5497fcbc8e1f56b7bee4661f329d3c
4
+ data.tar.gz: '09430d77dcf4e2e5a0fa0b1c1c3b43199753ddadd5d60f9fa42fb17f030c301b'
5
5
  SHA512:
6
- metadata.gz: 1e1eae524a65dc4f842223c1300ed3ba997bc55cddb986016e379bc6379117c94fae45c915c35e1fdc8339d0238657e9feddb3cce5618b5000e2b5e0b5c67af6
7
- data.tar.gz: 1df098bc2c0450348d34940990e7fbd3247aa45be8326661ade6b6190f37b4c0a16fa9153e13f86a94a86b9b71269a862051b7af22cc944b108e7e36b30d42f7
6
+ metadata.gz: 73b7ed1bcea104832e5f30e715ea8d1d4e56a329d019f6ed484c41dd58d01d454b4a6b8ccfd5c3f9ac1cf3705d37be6b5d06bf85795225b1da89af312ab0c96a
7
+ data.tar.gz: 65b7650c9fad798f9f57d6c4c24fdf4a1dea322b98aa1c864839abc20f82d15748788c3a97a09d7bd08155a8271fa8bf40ef2bbcc3961d00dfe53899ad639a1b
@@ -0,0 +1,118 @@
1
+ <!doctype html>
2
+ <html
3
+ dir="{{ site.direction | default: 'ltr' }}"
4
+ lang="{{ site.lang | default: 'en' }}"
5
+ class="{% if site.fixed_navbar %} has-navbar-fixed-{{ site.fixed_navbar }} {% endif %} {% if site.force_theme %} theme-{{ site.force_theme }} {% endif %}"
6
+ >
7
+ {% include head.html %}
8
+ <body>
9
+ {% include skip-to-content.html %}
10
+ {% if site.cookie_policy %}
11
+ {% include cookie-banner.html %}
12
+ {% endif %}
13
+
14
+ <div
15
+ {% if page.background_image %}
16
+ style="background: url('{{ page.background_image | relative_url }}') no-repeat center center; background-size: cover;"
17
+ {% else %}
18
+ style="background-color: var(--bulma-dark);"
19
+ {% endif %}
20
+ >
21
+ <div
22
+ class="container pb-6"
23
+ >
24
+ <section class="section">
25
+ <div class="columns is-centered is-multiline">
26
+ <div class="column is-two-thirds-tablet is-half-desktop">
27
+ <div class="is-flex is-flex-direction-column is-justify-content-center is-align-items-center">
28
+ <figure class="image is-128x128">
29
+ <img
30
+ class="is-rounded"
31
+ src="{{ page.avatar | relative_url }}"
32
+ alt="{{ page.avatar_alt }}"
33
+ >
34
+ </figure>
35
+
36
+ <h1 class="title has-text-white is-size-2">{{ page.title }}</h1>
37
+ <p class="subtitle has-text-white">{{ page.subtitle }}</p>
38
+
39
+ <div class="">
40
+ {% include follow.html %}
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ <div class="columns is-centered is-multiline">
46
+ <div class="column is-two-thirds-tablet is-half-desktop">
47
+ <main class="is-flex-grow-1" id="main-content">
48
+ {% for section in page.link_sections %}
49
+ <h2 class="is-size-3 has-text-centered has-text-white has-text-weight-bold">
50
+ {{ section.title }}
51
+ </h2>
52
+ <ul class="mb-6">
53
+ {% for section_link in section.links %}
54
+ <li class="mb-4">
55
+ <a
56
+ href="{{ section_link.link | relative_url}}"
57
+ class="is-block category-product"
58
+ >
59
+ {% if section_link.image_large %}
60
+ <section
61
+ class="hero is-medium"
62
+ style="background: url('{{ section_link.image | relative_url }}') no-repeat center center; background-size: cover;"
63
+ >
64
+ <div class="hero-body">
65
+ <div class="is-size-4 has-text-white content">
66
+ {{ section_link.name | markdownify }}
67
+ </div>
68
+ </div>
69
+ </section>
70
+ {% else %}
71
+ <div class="card">
72
+ <div class="card-content">
73
+ <article class="media">
74
+ <figure class="media-left">
75
+ <span
76
+ class="image is-48x48"
77
+ >
78
+ <img
79
+ src="{{ section_link.image | relative_url }}"
80
+ alt="{{ section_link.image_alt }}"
81
+ >
82
+ </span>
83
+ </figure>
84
+ <div class="media-content">
85
+ <div class="content">
86
+ <p class="is-size-4">
87
+ <strong>{{ section_link.name }}</strong>
88
+ </p>
89
+ </div>
90
+ </div>
91
+ </article>
92
+ </div>
93
+ </div>
94
+ {% endif %}
95
+ </a>
96
+ </li>
97
+ {% endfor %}
98
+ </ul>
99
+ {% endfor %}
100
+
101
+ {% if content %}
102
+ <div class="card mt-6">
103
+ <div class="card-content">
104
+ <div class="content">
105
+ {{ content }}
106
+ </div>
107
+ </div>
108
+ </div>
109
+ {% endif %}
110
+ </main>
111
+ </div>
112
+ </div>
113
+ </section>
114
+ </div>
115
+ </div>
116
+ {% include footer.html %}
117
+ </body>
118
+ </html>
@@ -6,6 +6,7 @@
6
6
  >
7
7
  {% include head.html %}
8
8
  <body>
9
+ {% include skip-to-content.html %}
9
10
  {% if site.cookie_policy %}
10
11
  {% include cookie-banner.html %}
11
12
  {% endif %}
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.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-06 00:00:00.000000000 Z
11
+ date: 2025-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -172,6 +172,7 @@ files:
172
172
  - _includes/youtube.html
173
173
  - _layouts/blog.html
174
174
  - _layouts/default.html
175
+ - _layouts/links.html
175
176
  - _layouts/page.html
176
177
  - _layouts/post.html
177
178
  - _layouts/product-category.html