bulma-clean-theme 0.13.3 → 1.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/_includes/callouts.html +21 -15
  4. data/_includes/cookie-banner.html +53 -0
  5. data/_includes/disqus.html +20 -17
  6. data/_includes/footer-scripts.html +1 -1
  7. data/_includes/footer.html +8 -9
  8. data/_includes/gallery.html +17 -18
  9. data/_includes/google-analytics.html +36 -6
  10. data/_includes/head-scripts.html +1 -1
  11. data/_includes/head.html +12 -6
  12. data/_includes/header.html +46 -21
  13. data/_includes/hero.html +12 -3
  14. data/_includes/latest-posts.html +4 -7
  15. data/_includes/menubar.html +27 -18
  16. data/_includes/notification.html +4 -2
  17. data/_includes/pagination.html +27 -11
  18. data/_includes/post-card.html +9 -9
  19. data/_includes/rating.html +7 -8
  20. data/_includes/review.html +22 -22
  21. data/_includes/series.html +17 -19
  22. data/_includes/share-buttons.html +17 -9
  23. data/_includes/showcase.html +47 -29
  24. data/_includes/sponsors.html +33 -33
  25. data/_includes/subscribe.html +1 -1
  26. data/_includes/tabs.html +20 -16
  27. data/_includes/tag.html +1 -1
  28. data/_includes/toc.html +2 -3
  29. data/_includes/vimeo.html +9 -2
  30. data/_includes/youtube.html +7 -6
  31. data/_layouts/blog.html +4 -5
  32. data/_layouts/default.html +55 -48
  33. data/_layouts/page.html +1 -2
  34. data/_layouts/post.html +9 -7
  35. data/_layouts/product-category.html +25 -35
  36. data/_layouts/product.html +24 -29
  37. data/_layouts/recipe.html +47 -50
  38. data/_sass/_main.scss +3 -2
  39. data/node_modules/.package-lock.json +211 -8
  40. data/node_modules/bulma/LICENSE +1 -1
  41. data/node_modules/bulma/README.md +56 -52
  42. data/node_modules/bulma/bulma.scss +4 -0
  43. data/node_modules/bulma/css/bulma.css +19282 -8696
  44. data/node_modules/bulma/css/bulma.css.map +1 -1
  45. data/node_modules/bulma/css/bulma.min.css +3 -1
  46. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  47. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css.map +1 -0
  48. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  49. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map +1 -0
  50. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  51. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css.map +1 -0
  52. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +3 -0
  53. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  54. data/node_modules/bulma/package.json +25 -20
  55. data/node_modules/bulma/sass/_index.scss +10 -0
  56. data/node_modules/bulma/sass/base/_index.scss +6 -0
  57. data/node_modules/bulma/sass/base/animations.scss +15 -0
  58. data/node_modules/bulma/sass/base/generic.scss +239 -0
  59. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  60. data/node_modules/bulma/sass/base/skeleton.scss +126 -0
  61. data/node_modules/bulma/sass/components/_index.scss +13 -0
  62. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  63. data/node_modules/bulma/sass/components/card.scss +162 -0
  64. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  65. data/node_modules/bulma/sass/components/menu.scss +165 -0
  66. data/node_modules/bulma/sass/components/message.scss +183 -0
  67. data/node_modules/bulma/sass/components/modal.scss +164 -0
  68. data/node_modules/bulma/sass/components/navbar.scss +788 -0
  69. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  70. data/node_modules/bulma/sass/components/panel.scss +218 -0
  71. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  72. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  73. data/node_modules/bulma/sass/elements/block.scss +6 -0
  74. data/node_modules/bulma/sass/elements/box.scss +59 -0
  75. data/node_modules/bulma/sass/elements/button.scss +640 -0
  76. data/node_modules/bulma/sass/elements/content.scss +283 -0
  77. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  78. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  79. data/node_modules/bulma/sass/elements/image.scss +62 -0
  80. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  81. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  82. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  83. data/node_modules/bulma/sass/elements/table.scss +261 -0
  84. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  85. data/node_modules/bulma/sass/elements/title.scss +128 -0
  86. data/node_modules/bulma/sass/form/_index.scss +9 -0
  87. data/node_modules/bulma/sass/form/checkbox-radio.scss +32 -0
  88. data/node_modules/bulma/sass/form/file.scss +330 -0
  89. data/node_modules/bulma/sass/form/input-textarea.scss +123 -0
  90. data/node_modules/bulma/sass/form/select.scss +143 -0
  91. data/node_modules/bulma/sass/form/shared.scss +172 -0
  92. data/node_modules/bulma/sass/form/tools.scss +341 -0
  93. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  94. data/node_modules/bulma/sass/grid/columns-v2.scss +957 -0
  95. data/node_modules/bulma/sass/grid/columns.scss +877 -0
  96. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  97. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  98. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  99. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  100. data/node_modules/bulma/sass/helpers/color.scss +364 -0
  101. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  102. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  103. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  104. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  105. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  106. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  107. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  108. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  109. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  110. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  111. data/node_modules/bulma/sass/layout/container.scss +51 -0
  112. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  113. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  114. data/node_modules/bulma/sass/layout/level.scss +107 -0
  115. data/node_modules/bulma/sass/layout/media.scss +106 -0
  116. data/node_modules/bulma/sass/layout/section.scss +34 -0
  117. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  118. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  119. data/node_modules/bulma/sass/themes/light.scss +145 -0
  120. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  121. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  122. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  123. data/node_modules/bulma/sass/utilities/css-variables.scss +425 -0
  124. data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
  125. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  126. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  127. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  128. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  129. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +19 -0
  130. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  131. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  132. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  133. data/node_modules/bulma-block-list/README.md +12 -6
  134. data/node_modules/bulma-block-list/docs/.nojekyll +0 -0
  135. data/node_modules/bulma-block-list/docs/docs.css +22782 -0
  136. data/node_modules/bulma-block-list/docs/docs.css.map +1 -0
  137. data/node_modules/bulma-block-list/docs/index.html +376 -307
  138. data/node_modules/bulma-block-list/package.json +8 -3
  139. data/node_modules/bulma-block-list/src/block-list.scss +99 -125
  140. data/node_modules/bulma-block-list/src/docs.scss +5 -0
  141. data/package-lock.json +353 -16
  142. data/package.json +2 -2
  143. metadata +103 -87
  144. data/node_modules/bulma/bulma.sass +0 -10
  145. data/node_modules/bulma/css/bulma-rtl.css +0 -11851
  146. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  147. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  148. data/node_modules/bulma/sass/base/_all.sass +0 -6
  149. data/node_modules/bulma/sass/base/animations.sass +0 -5
  150. data/node_modules/bulma/sass/base/generic.sass +0 -145
  151. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  152. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  153. data/node_modules/bulma/sass/components/_all.sass +0 -15
  154. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  155. data/node_modules/bulma/sass/components/card.sass +0 -103
  156. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  157. data/node_modules/bulma/sass/components/level.sass +0 -79
  158. data/node_modules/bulma/sass/components/media.sass +0 -59
  159. data/node_modules/bulma/sass/components/menu.sass +0 -59
  160. data/node_modules/bulma/sass/components/message.sass +0 -101
  161. data/node_modules/bulma/sass/components/modal.sass +0 -117
  162. data/node_modules/bulma/sass/components/navbar.sass +0 -446
  163. data/node_modules/bulma/sass/components/pagination.sass +0 -167
  164. data/node_modules/bulma/sass/components/panel.sass +0 -121
  165. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  166. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  167. data/node_modules/bulma/sass/elements/box.sass +0 -26
  168. data/node_modules/bulma/sass/elements/button.sass +0 -357
  169. data/node_modules/bulma/sass/elements/container.sass +0 -29
  170. data/node_modules/bulma/sass/elements/content.sass +0 -162
  171. data/node_modules/bulma/sass/elements/form.sass +0 -1
  172. data/node_modules/bulma/sass/elements/icon.sass +0 -46
  173. data/node_modules/bulma/sass/elements/image.sass +0 -73
  174. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  175. data/node_modules/bulma/sass/elements/other.sass +0 -31
  176. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  177. data/node_modules/bulma/sass/elements/table.sass +0 -134
  178. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  179. data/node_modules/bulma/sass/elements/title.sass +0 -70
  180. data/node_modules/bulma/sass/form/_all.sass +0 -9
  181. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  182. data/node_modules/bulma/sass/form/file.sass +0 -184
  183. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  184. data/node_modules/bulma/sass/form/select.sass +0 -88
  185. data/node_modules/bulma/sass/form/shared.sass +0 -60
  186. data/node_modules/bulma/sass/form/tools.sass +0 -215
  187. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  188. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  189. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  190. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  191. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  192. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  193. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  194. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  195. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  196. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  197. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  198. data/node_modules/bulma/sass/helpers/typography.sass +0 -103
  199. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  200. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  201. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  202. data/node_modules/bulma/sass/layout/hero.sass +0 -153
  203. data/node_modules/bulma/sass/layout/section.sass +0 -17
  204. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  205. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  206. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  207. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -114
  208. data/node_modules/bulma/sass/utilities/extends.sass +0 -25
  209. data/node_modules/bulma/sass/utilities/functions.sass +0 -135
  210. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -79
  211. data/node_modules/bulma/sass/utilities/mixins.sass +0 -303
  212. data/node_modules/bulma-block-list/docs/Gemfile +0 -3
  213. data/node_modules/bulma-block-list/docs/_config.yml +0 -17
  214. data/node_modules/bulma-block-list/docs/_data/menu.yaml +0 -24
  215. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +0 -156
  216. data/node_modules/bulma-block-list/docs/_sass/_main.scss +0 -20
  217. data/node_modules/bulma-block-list/docs/assets/css/app.scss +0 -7
  218. data/node_modules/bulma-block-list/docs/favicon.ico +0 -0
  219. data/node_modules/bulma-block-list/src/demo.scss +0 -3
@@ -2,41 +2,31 @@
2
2
  layout: default
3
3
  show_sidebar: false
4
4
  ---
5
-
6
5
  <div class="columns is-multiline">
7
-
8
- <div class="column is-12">
9
- {{ page.content }}
10
- </div>
11
-
12
- {% assign sorted_products = site.products | sort:page.sort %}
13
-
14
- {% for product in sorted_products %}
15
- <div class="column is-4-desktop is-6-tablet">
16
-
17
- <a href="{{ product.url | relative_url }}">
18
-
19
- <div class="card">
20
-
21
- {% if product.image %}
22
- <div class="card-image">
23
- <figure class="image is-4by3">
24
- <img src="{{ product.image }}" alt="{{ product.title }}" />
25
- </figure>
6
+ <div class="column is-12">
7
+ {{ page.content }}
8
+ </div>
9
+
10
+ {% assign sorted_products = site.products | sort: page.sort %}
11
+
12
+ {% for product in sorted_products %}
13
+ <div class="column is-4-desktop is-6-tablet">
14
+ <a href="{{ product.url | relative_url }}">
15
+ <div class="card">
16
+ {% if product.image %}
17
+ <div class="card-image">
18
+ <figure class="image is-4by3">
19
+ <img src="{{ product.image }}" alt="{{ product.title }}">
20
+ </figure>
21
+ </div>
22
+ {% endif %}
23
+ <div class="card-content">
24
+ <p class="title is-4">{{ product.title }}</p>
25
+ <p class="subtitle is-4">{{ product.subtitle }}</p>
26
+ <p class="title is-5 has-text-right">{{ product.price }}</p>
27
+ </div>
28
+ </div>
29
+ </a>
26
30
  </div>
27
- {% endif %}
28
- <div class="card-content">
29
-
30
- <p class="title is-4">{{ product.title }}</h2>
31
- <p class="subtitle is-4">{{ product.subtitle }}</p>
32
- <p class="title is-5 has-text-right">{{ product.price }}</p>
33
-
34
- </div>
35
- </div>
36
-
37
- </a>
38
-
39
- </div>
40
- {% endfor %}
31
+ {% endfor %}
41
32
  </div>
42
-
@@ -1,12 +1,10 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
4
  <div class="columns is-multiline">
6
-
7
5
  <div class="column is-6">
8
6
  <figure class="image is-4by3">
9
- <img src="{{ page.image }}" />
7
+ <img src="{{ page.image }}">
10
8
  </figure>
11
9
  </div>
12
10
 
@@ -15,47 +13,44 @@ layout: default
15
13
  <p class="subtitle is-3">{{ page.subtitle }}</p>
16
14
  <p class="title is-4 has-text-right">{{ page.price }}</p>
17
15
  {% if page.product_code %}
18
- <p class="subtitle is-5 has-text-right">{{ page.product_code }}</p>
16
+ <p class="subtitle is-5 has-text-right">{{ page.product_code }}</p>
19
17
  {% endif %}
20
-
18
+
21
19
  {% if page.rating %}
22
20
  {% include rating.html rating=page.rating %}
23
21
  {% endif %}
24
-
22
+
25
23
  {% if page.features %}
26
- <div class="content">
27
- {% for feature in page.features %}
28
- <p>
29
- <span class="icon">
30
- {% if feature.icon %}
31
- <i class="fas {{ feature.icon }}"></i>
32
- {% else %}
33
- <i class="fas fa-circle fa-xs"></i>
34
- {% endif %}
35
- </span>
36
- <span>{{ feature.label }}</span></p>
37
- {% endfor %}
38
- </div>
24
+ <div class="content">
25
+ {% for feature in page.features %}
26
+ <p>
27
+ <span class="icon">
28
+ {% if feature.icon %}
29
+ <i class="fas {{ feature.icon }}"></i>
30
+ {% else %}
31
+ <i class="fas fa-circle fa-xs"></i>
32
+ {% endif %}
33
+ </span>
34
+ <span>{{ feature.label }}</span>
35
+ </p>
36
+ {% endfor %}
37
+ </div>
39
38
  {% endif %}
40
39
  </div>
41
40
 
42
41
  <div class="column is-12">
43
42
  <p class="title is-4">Description</p>
44
43
  <div class="content">
45
-
46
-
47
44
  {{ content }}
48
45
  </div>
49
46
  </div>
50
47
 
51
48
  {% if site.data.reviews[page.product_code] %}
52
- <div class="column is-12">
53
- <p class="title is-4">Reviews</p>
54
- {% for review in site.data.reviews[page.product_code] %}
55
- {% include review.html %}
56
- {% endfor %}
57
- </div>
49
+ <div class="column is-12">
50
+ <p class="title is-4">Reviews</p>
51
+ {% for review in site.data.reviews[page.product_code] %}
52
+ {% include review.html %}
53
+ {% endfor %}
54
+ </div>
58
55
  {% endif %}
59
-
60
56
  </div>
61
-
data/_layouts/recipe.html CHANGED
@@ -1,65 +1,62 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
4
  <script type="application/ld+json">
6
- {
7
- "@context": "https://schema.org/",
8
- "@type": "Recipe",
9
- "name": "{{ page.title }}",
10
- "image": [
11
- "{{ page.image }}"
12
- ],
13
- "author": {
14
- "@type": "Person",
15
- "name": "{{ page.author }}"
16
- },
17
- "datePublished": "{{ page.date }}",
18
- "description": "{{ page.description }}",
19
- "prepTime": "{{ page.prep_time }}",
20
- "cookTime": "{{ page.cook_time }}",
21
- "totalTime": "{{ page.total_time }}",
22
- "keywords": "{{ page.keywords }}",
23
- "recipeYield": "{{ page.recipe_yield }}",
24
- "recipeCategory": "{{ page.recipe_category }}",
25
- "recipeCuisine": "{{ page.recipe_cuisine }}",
26
- {% if page.calories %}
27
- "nutrition": {
28
- "@type": "NutritionInformation",
29
- "calories": "{{ page.calories }}"
30
- },
31
- {% endif %}
32
- "recipeIngredient":
33
- {{ page.ingredients | jsonify }},
34
- "recipeInstructions": [
35
- {% for step in page.method %}
36
- {
37
- "@type": "HowToStep",
38
- "text": "{{ step }}"
39
- {% if forloop.last == true %}
40
- }
41
- {% else %}
5
+ {
6
+ "@context": "https://schema.org/",
7
+ "@type": "Recipe",
8
+ "name": "{{ page.title }}",
9
+ "image": [
10
+ "{{ page.image }}"
11
+ ],
12
+ "author": {
13
+ "@type": "Person",
14
+ "name": "{{ page.author }}"
15
+ },
16
+ "datePublished": "{{ page.date }}",
17
+ "description": "{{ page.description }}",
18
+ "prepTime": "{{ page.prep_time }}",
19
+ "cookTime": "{{ page.cook_time }}",
20
+ "totalTime": "{{ page.total_time }}",
21
+ "keywords": "{{ page.keywords }}",
22
+ "recipeYield": "{{ page.recipe_yield }}",
23
+ "recipeCategory": "{{ page.recipe_category }}",
24
+ "recipeCuisine": "{{ page.recipe_cuisine }}",
25
+ {% if page.calories %}
26
+ "nutrition": {
27
+ "@type": "NutritionInformation",
28
+ "calories": "{{ page.calories }}"
42
29
  },
43
30
  {% endif %}
44
- {% endfor %}
45
- ]
46
- }
31
+ "recipeIngredient":
32
+ {{ page.ingredients | jsonify }},
33
+ "recipeInstructions": [
34
+ {% for step in page.method %}
35
+ {
36
+ "@type": "HowToStep",
37
+ "text": "{{ step }}"
38
+ {% if forloop.last == true %}
39
+ }
40
+ {% else %}
41
+ },
42
+ {% endif %}
43
+ {% endfor %}
44
+ ]
45
+ }
47
46
  </script>
48
47
 
49
48
  <div class="columns is-multiline">
50
49
  <div class="column is-4">
51
- <div class="box has-text-centered">
52
- <strong>Serves:</strong> {{ page.recipe_yield }}
53
- </div>
50
+ <div class="box has-text-centered"><strong>Serves:</strong> {{ page.recipe_yield }}</div>
54
51
  </div>
55
52
  <div class="column is-4">
56
53
  <div class="box has-text-centered">
57
- <strong>Prep time:</strong> {{ page.prep_time | date: "%k hours %M minutes" }}
54
+ <strong>Prep time:</strong> {{ page.prep_time | date: '%k hours %M minutes' }}
58
55
  </div>
59
56
  </div>
60
57
  <div class="column is-4">
61
58
  <div class="box has-text-centered">
62
- <strong>Cook time:</strong> {{ page.cook_time | date: "%k hours %M minutes" }}
59
+ <strong>Cook time:</strong> {{ page.cook_time | date: '%k hours %M minutes' }}
63
60
  </div>
64
61
  </div>
65
62
  <div class="column is-4">
@@ -68,7 +65,7 @@ layout: default
68
65
  <div class="content">
69
66
  <ul>
70
67
  {% for ingredient in page.ingredients %}
71
- <li>{{ ingredient }}</li>
68
+ <li>{{ ingredient }}</li>
72
69
  {% endfor %}
73
70
  </ul>
74
71
  </div>
@@ -83,16 +80,16 @@ layout: default
83
80
  {% endfor %}
84
81
  </ol>
85
82
  <div class="tags">
86
- {% assign tags = page.keywords | split: "," %}
83
+ {% assign tags = page.keywords | split: ',' %}
87
84
  {% for tag in tags %}
88
85
  {% include tag.html tag=tag %}
89
86
  {% endfor %}
90
87
  </div>
91
-
92
- <p>Published: {{ page.date | date: "%b %-d, %Y" }} by {{ page.author }}</p>
88
+
89
+ <p>Published: {{ page.date | date: '%b %-d, %Y' }} by {{ page.author }}</p>
93
90
  </div>
94
91
  <div class="content">
95
92
  {{ content }}
96
93
  </div>
97
94
  </div>
98
- </div>
95
+ </div>
data/_sass/_main.scss CHANGED
@@ -9,13 +9,14 @@ $tabs-link-active-border-bottom-color: $primary;
9
9
 
10
10
  $modal-content-width: 800px;
11
11
 
12
- @import "../node_modules/bulma/bulma.sass";
12
+ @import "bulma/sass";
13
+ @import "bulma/sass/utilities/mixins";
13
14
  $hero-darken: $dark !default;
14
15
 
15
16
  @import "layout";
16
17
  @import "syntax";
17
18
  @import "showcase";
18
- @import "../node_modules/bulma-block-list/src/block-list.scss";
19
+ @import "bulma-block-list/src/block-list.scss";
19
20
 
20
21
  .gh-sponsor {
21
22
  color: #ea4aaa;
@@ -1,20 +1,223 @@
1
1
  {
2
2
  "name": "bulma-clean-theme",
3
3
  "version": "1.0.0",
4
- "lockfileVersion": 2,
4
+ "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
+ "node_modules/anymatch": {
8
+ "version": "3.1.3",
9
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
10
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
11
+ "dependencies": {
12
+ "normalize-path": "^3.0.0",
13
+ "picomatch": "^2.0.4"
14
+ },
15
+ "engines": {
16
+ "node": ">= 8"
17
+ }
18
+ },
19
+ "node_modules/binary-extensions": {
20
+ "version": "2.3.0",
21
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
22
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
23
+ "engines": {
24
+ "node": ">=8"
25
+ },
26
+ "funding": {
27
+ "url": "https://github.com/sponsors/sindresorhus"
28
+ }
29
+ },
30
+ "node_modules/braces": {
31
+ "version": "3.0.2",
32
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
33
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
34
+ "dependencies": {
35
+ "fill-range": "^7.0.1"
36
+ },
37
+ "engines": {
38
+ "node": ">=8"
39
+ }
40
+ },
7
41
  "node_modules/bulma": {
8
- "version": "0.9.4",
9
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz",
10
- "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
42
+ "version": "1.0.0",
43
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.0.tgz",
44
+ "integrity": "sha512-7n49v/gdHXaHcU9fVobqGXO2OguiCoMh6CLbeX7jq00XrZ5vOSE4LNS0S/0Q6rlBbckY6kk6W7LwqxS0nu4bug==",
45
+ "dependencies": {
46
+ "sass": "^1.71.1"
47
+ }
11
48
  },
12
49
  "node_modules/bulma-block-list": {
13
- "version": "0.7.0",
14
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.7.0.tgz",
15
- "integrity": "sha512-IicPQLcw4iX74waDAYhHT4LPbgc3qUPcrF5tOgNQGAUypoAcyiFjW2mBpLe+GCtQAYsDWmpu+X0nxhmUdOdAGw==",
50
+ "version": "1.0.0",
51
+ "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-1.0.0.tgz",
52
+ "integrity": "sha512-3lGYDMJjRS3aF/zua7Dq69Aagae+55JxSVX03JdlLvS3cqH8sv7uTZLUbzM1ybdLweNh7bQkTX5ERmVY9lbMIA==",
53
+ "dependencies": {
54
+ "bulma": "^1.0.0"
55
+ }
56
+ },
57
+ "node_modules/chokidar": {
58
+ "version": "3.6.0",
59
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
60
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
61
+ "dependencies": {
62
+ "anymatch": "~3.1.2",
63
+ "braces": "~3.0.2",
64
+ "glob-parent": "~5.1.2",
65
+ "is-binary-path": "~2.1.0",
66
+ "is-glob": "~4.0.1",
67
+ "normalize-path": "~3.0.0",
68
+ "readdirp": "~3.6.0"
69
+ },
70
+ "engines": {
71
+ "node": ">= 8.10.0"
72
+ },
73
+ "funding": {
74
+ "url": "https://paulmillr.com/funding/"
75
+ },
76
+ "optionalDependencies": {
77
+ "fsevents": "~2.3.2"
78
+ }
79
+ },
80
+ "node_modules/fill-range": {
81
+ "version": "7.0.1",
82
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
83
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
84
+ "dependencies": {
85
+ "to-regex-range": "^5.0.1"
86
+ },
87
+ "engines": {
88
+ "node": ">=8"
89
+ }
90
+ },
91
+ "node_modules/fsevents": {
92
+ "version": "2.3.3",
93
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
94
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
95
+ "hasInstallScript": true,
96
+ "optional": true,
97
+ "os": [
98
+ "darwin"
99
+ ],
100
+ "engines": {
101
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
102
+ }
103
+ },
104
+ "node_modules/glob-parent": {
105
+ "version": "5.1.2",
106
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
107
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
108
+ "dependencies": {
109
+ "is-glob": "^4.0.1"
110
+ },
111
+ "engines": {
112
+ "node": ">= 6"
113
+ }
114
+ },
115
+ "node_modules/immutable": {
116
+ "version": "4.3.5",
117
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz",
118
+ "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw=="
119
+ },
120
+ "node_modules/is-binary-path": {
121
+ "version": "2.1.0",
122
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
123
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
124
+ "dependencies": {
125
+ "binary-extensions": "^2.0.0"
126
+ },
127
+ "engines": {
128
+ "node": ">=8"
129
+ }
130
+ },
131
+ "node_modules/is-extglob": {
132
+ "version": "2.1.1",
133
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
134
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
135
+ "engines": {
136
+ "node": ">=0.10.0"
137
+ }
138
+ },
139
+ "node_modules/is-glob": {
140
+ "version": "4.0.3",
141
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
142
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
143
+ "dependencies": {
144
+ "is-extglob": "^2.1.1"
145
+ },
146
+ "engines": {
147
+ "node": ">=0.10.0"
148
+ }
149
+ },
150
+ "node_modules/is-number": {
151
+ "version": "7.0.0",
152
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
153
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
154
+ "engines": {
155
+ "node": ">=0.12.0"
156
+ }
157
+ },
158
+ "node_modules/normalize-path": {
159
+ "version": "3.0.0",
160
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
161
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
162
+ "engines": {
163
+ "node": ">=0.10.0"
164
+ }
165
+ },
166
+ "node_modules/picomatch": {
167
+ "version": "2.3.1",
168
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
169
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
170
+ "engines": {
171
+ "node": ">=8.6"
172
+ },
173
+ "funding": {
174
+ "url": "https://github.com/sponsors/jonschlinkert"
175
+ }
176
+ },
177
+ "node_modules/readdirp": {
178
+ "version": "3.6.0",
179
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
180
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
181
+ "dependencies": {
182
+ "picomatch": "^2.2.1"
183
+ },
184
+ "engines": {
185
+ "node": ">=8.10.0"
186
+ }
187
+ },
188
+ "node_modules/sass": {
189
+ "version": "1.76.0",
190
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.76.0.tgz",
191
+ "integrity": "sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==",
192
+ "dependencies": {
193
+ "chokidar": ">=3.0.0 <4.0.0",
194
+ "immutable": "^4.0.0",
195
+ "source-map-js": ">=0.6.2 <2.0.0"
196
+ },
197
+ "bin": {
198
+ "sass": "sass.js"
199
+ },
200
+ "engines": {
201
+ "node": ">=14.0.0"
202
+ }
203
+ },
204
+ "node_modules/source-map-js": {
205
+ "version": "1.2.0",
206
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
207
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
208
+ "engines": {
209
+ "node": ">=0.10.0"
210
+ }
211
+ },
212
+ "node_modules/to-regex-range": {
213
+ "version": "5.0.1",
214
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
215
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
16
216
  "dependencies": {
17
- "bulma": "^0.9.3"
217
+ "is-number": "^7.0.0"
218
+ },
219
+ "engines": {
220
+ "node": ">=8.0"
18
221
  }
19
222
  }
20
223
  }
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Jeremy Thomas
3
+ Copyright (c) 2023 Jeremy Thomas
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal