mere-blog-theme 0.5 → 1.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.
Files changed (189) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +44 -24
  3. data/_includes/author-media.html +23 -20
  4. data/_includes/google-analytics.html +6 -3
  5. data/_includes/head.html +21 -11
  6. data/_includes/hero.html +12 -7
  7. data/_includes/navbar.html +19 -19
  8. data/_includes/pagination.html +41 -21
  9. data/_includes/post-item.html +18 -15
  10. data/_includes/social-buttons.html +25 -26
  11. data/_layouts/author.html +51 -38
  12. data/_layouts/default.html +21 -19
  13. data/_layouts/homepage.html +9 -12
  14. data/_layouts/post.html +29 -28
  15. data/_sass/_intro.scss +6 -4
  16. data/_sass/_layout.scss +29 -18
  17. data/_sass/_main.scss +17 -18
  18. data/_sass/syntax.scss +14 -6
  19. data/assets/css/app.scss +1 -1
  20. data/assets/js/app.js +9 -11
  21. data/node_modules/.package-lock.json +4 -4
  22. data/node_modules/bulma/LICENSE +1 -1
  23. data/node_modules/bulma/README.md +67 -55
  24. data/node_modules/bulma/bulma.scss +4 -0
  25. data/node_modules/bulma/css/bulma.css +18412 -8566
  26. data/node_modules/bulma/css/bulma.css.map +1 -1
  27. data/node_modules/bulma/css/bulma.min.css +3 -1
  28. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +19648 -0
  29. data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -0
  30. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  31. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +11136 -0
  32. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -0
  33. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  34. data/node_modules/bulma/css/versions/bulma-no-helpers.css +11136 -0
  35. data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -0
  36. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  37. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +21551 -0
  38. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  39. data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
  40. data/node_modules/bulma/package.json +25 -19
  41. data/node_modules/bulma/sass/_index.scss +10 -0
  42. data/node_modules/bulma/sass/base/_index.scss +6 -0
  43. data/node_modules/bulma/sass/base/animations.scss +15 -0
  44. data/node_modules/bulma/sass/base/generic.scss +239 -0
  45. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  46. data/node_modules/bulma/sass/base/skeleton.scss +114 -0
  47. data/node_modules/bulma/sass/components/_index.scss +13 -0
  48. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  49. data/node_modules/bulma/sass/components/card.scss +162 -0
  50. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  51. data/node_modules/bulma/sass/components/menu.scss +165 -0
  52. data/node_modules/bulma/sass/components/message.scss +183 -0
  53. data/node_modules/bulma/sass/components/modal.scss +164 -0
  54. data/node_modules/bulma/sass/components/navbar.scss +799 -0
  55. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  56. data/node_modules/bulma/sass/components/panel.scss +218 -0
  57. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  58. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  59. data/node_modules/bulma/sass/elements/block.scss +6 -0
  60. data/node_modules/bulma/sass/elements/box.scss +59 -0
  61. data/node_modules/bulma/sass/elements/button.scss +647 -0
  62. data/node_modules/bulma/sass/elements/content.scss +289 -0
  63. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  64. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  65. data/node_modules/bulma/sass/elements/image.scss +62 -0
  66. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  67. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  68. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  69. data/node_modules/bulma/sass/elements/table.scss +261 -0
  70. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  71. data/node_modules/bulma/sass/elements/title.scss +128 -0
  72. data/node_modules/bulma/sass/form/_index.scss +9 -0
  73. data/node_modules/bulma/sass/form/checkbox-radio.scss +36 -0
  74. data/node_modules/bulma/sass/form/file.scss +330 -0
  75. data/node_modules/bulma/sass/form/input-textarea.scss +113 -0
  76. data/node_modules/bulma/sass/form/select.scss +144 -0
  77. data/node_modules/bulma/sass/form/shared.scss +176 -0
  78. data/node_modules/bulma/sass/form/tools.scss +352 -0
  79. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  80. data/node_modules/bulma/sass/grid/columns.scss +961 -0
  81. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  82. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  83. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  84. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  85. data/node_modules/bulma/sass/helpers/color.scss +344 -0
  86. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  87. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  88. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  89. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  90. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  91. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  92. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  93. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  94. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  95. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  96. data/node_modules/bulma/sass/layout/container.scss +59 -0
  97. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  98. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  99. data/node_modules/bulma/sass/layout/level.scss +107 -0
  100. data/node_modules/bulma/sass/layout/media.scss +106 -0
  101. data/node_modules/bulma/sass/layout/section.scss +38 -0
  102. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  103. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  104. data/node_modules/bulma/sass/themes/light.scss +146 -0
  105. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  106. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  107. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  108. data/node_modules/bulma/sass/utilities/css-variables.scss +426 -0
  109. data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
  110. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  111. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  112. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  113. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  114. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +20 -0
  115. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  116. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  117. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  118. data/package-lock.json +5 -12
  119. data/package.json +1 -1
  120. metadata +107 -80
  121. data/node_modules/bulma/CHANGELOG.md +0 -1539
  122. data/node_modules/bulma/bulma.sass +0 -10
  123. data/node_modules/bulma/css/bulma-rtl.css +0 -11705
  124. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  125. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  126. data/node_modules/bulma/sass/base/_all.sass +0 -6
  127. data/node_modules/bulma/sass/base/animations.sass +0 -5
  128. data/node_modules/bulma/sass/base/generic.sass +0 -145
  129. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  130. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  131. data/node_modules/bulma/sass/components/_all.sass +0 -15
  132. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  133. data/node_modules/bulma/sass/components/card.sass +0 -102
  134. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  135. data/node_modules/bulma/sass/components/level.sass +0 -79
  136. data/node_modules/bulma/sass/components/media.sass +0 -59
  137. data/node_modules/bulma/sass/components/menu.sass +0 -59
  138. data/node_modules/bulma/sass/components/message.sass +0 -101
  139. data/node_modules/bulma/sass/components/modal.sass +0 -117
  140. data/node_modules/bulma/sass/components/navbar.sass +0 -445
  141. data/node_modules/bulma/sass/components/pagination.sass +0 -158
  142. data/node_modules/bulma/sass/components/panel.sass +0 -121
  143. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  144. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  145. data/node_modules/bulma/sass/elements/box.sass +0 -26
  146. data/node_modules/bulma/sass/elements/button.sass +0 -345
  147. data/node_modules/bulma/sass/elements/container.sass +0 -29
  148. data/node_modules/bulma/sass/elements/content.sass +0 -157
  149. data/node_modules/bulma/sass/elements/form.sass +0 -1
  150. data/node_modules/bulma/sass/elements/icon.sass +0 -40
  151. data/node_modules/bulma/sass/elements/image.sass +0 -73
  152. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  153. data/node_modules/bulma/sass/elements/other.sass +0 -41
  154. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  155. data/node_modules/bulma/sass/elements/table.sass +0 -133
  156. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  157. data/node_modules/bulma/sass/elements/title.sass +0 -72
  158. data/node_modules/bulma/sass/form/_all.sass +0 -9
  159. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  160. data/node_modules/bulma/sass/form/file.sass +0 -182
  161. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  162. data/node_modules/bulma/sass/form/select.sass +0 -87
  163. data/node_modules/bulma/sass/form/shared.sass +0 -60
  164. data/node_modules/bulma/sass/form/tools.sass +0 -215
  165. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  166. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  167. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  168. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  169. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  170. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  171. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  172. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  173. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  174. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  175. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  176. data/node_modules/bulma/sass/helpers/typography.sass +0 -100
  177. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  178. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  179. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  180. data/node_modules/bulma/sass/layout/hero.sass +0 -149
  181. data/node_modules/bulma/sass/layout/section.sass +0 -15
  182. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  183. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  184. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  185. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -110
  186. data/node_modules/bulma/sass/utilities/extends.sass +0 -22
  187. data/node_modules/bulma/sass/utilities/functions.sass +0 -115
  188. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -78
  189. data/node_modules/bulma/sass/utilities/mixins.sass +0 -268
@@ -1,24 +1,26 @@
1
1
  <!doctype html>
2
- <html>
3
- {% include head.html %}
4
- <body>
5
- {% include navbar.html %}
6
- {% unless page.hide_hero %}
7
- {% include hero.html %}
8
- {% endunless %}
9
- <section class="section">
10
- <div class="container">
2
+ <html
3
+ lang="{{ site.lang | default: 'en' }}"
4
+ class="{% if site.force_theme %} theme-{{ site.force_theme }} {% endif %}"
5
+ >
6
+ {% include head.html %}
7
+ <body>
8
+ {% include navbar.html %}
9
+ {% unless page.hide_hero %}
10
+ {% include hero.html %}
11
+ {% endunless %}
12
+ <section class="section">
13
+ <div class="container">
11
14
  {{ content }}
12
- </div>
13
- </section>
14
- <section class="section">
15
- <div class="container">
15
+ </div>
16
+ </section>
17
+ <section class="section">
18
+ <div class="container">
16
19
  <div class="has-text-centered">
17
- <p>Theme built by <a href="https://www.csrhymes.com">C.S. Rhymes</a></p>
20
+ <p>Theme built by <a href="https://www.csrhymes.com">C.S. Rhymes</a></p>
18
21
  </div>
19
- </div>
20
- </section>
21
- <script src="{{ site.baseurl }}/assets/js/app.js" type="text/javascript"></script>
22
- </body>
22
+ </div>
23
+ </section>
24
+ <script src="{{ site.baseurl }}/assets/js/app.js" type="text/javascript"></script>
25
+ </body>
23
26
  </html>
24
-
@@ -1,22 +1,19 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
- <div class="content">
6
- {{ content }}
4
+ <div class="content mb-4">
5
+ {{ content }}
7
6
  </div>
8
7
 
9
8
  <div class="columns is-multiline">
10
- {% assign post_width = "6|6|12|4|4|4" | split: "|" %}
11
- {% for post in paginator.posts limit:6 %}
9
+ {% assign post_width = '6|6|12|4|4|4' | split: '|' %}
10
+ {% for post in paginator.posts limit: 6 %}
12
11
  <div class="column is-{{ post_width[forloop.index0] }}">
13
- {% include post-item.html %}
12
+ {% include post-item.html %}
14
13
  </div>
15
- {% endfor %}
14
+ {% endfor %}
16
15
 
17
- <div class="column is-12">
18
- {% include pagination.html %}
19
- </div>
16
+ <div class="column is-12">
17
+ {% include pagination.html %}
18
+ </div>
20
19
  </div>
21
-
22
-
data/_layouts/post.html CHANGED
@@ -1,41 +1,42 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
5
4
  {% if page.intro %}
6
- <div class="intro">
5
+ <div class="intro has-background-light">
7
6
  <div class="columns is-centered">
8
- {% if page.intro_image %}
7
+ {% if page.intro_image %}
9
8
  <div class="column is-8-desktop is-6-tablet">
10
- <figure class="image {% if page.intro_image_ratio %} {{ page.intro_image_ratio }} {% else %} is-16by9 {% endif %}">
11
- <img src="{{ page.intro_image | prepend: site.baseurl }}" alt="{{ page.title }}" />
12
- </figure>
13
- </div>
14
- {% endif %}
15
- <div class="column is-4-desktop is-6-tablet">
16
- <p class="title is-1">{{ page.intro }}</p>
9
+ <figure class="image {% if page.intro_image_ratio %} {{ page.intro_image_ratio }} {% else %} is-16by9 {% endif %}">
10
+ <img src="{{ page.intro_image | prepend: site.baseurl }}" alt="{{ page.title }}">
11
+ </figure>
17
12
  </div>
13
+ {% endif %}
14
+ <div class="column is-4-desktop is-6-tablet">
15
+ <p class="title is-1 has-text-dark">{{ page.intro }}</p>
16
+ </div>
18
17
  </div>
19
- </div>
18
+ </div>
20
19
  {% endif %}
21
20
 
22
- <div class="columns is-centered">
23
- <div class="column is-8-desktop is-10-tablet">
24
- <div class="content">
25
- <p><strong>Published: {{ page.date | date: "%b %-d, %Y" }} by {{ page.author }}</strong></p>
26
- {{ content }}
27
- </div>
28
-
29
- <div class="tags">
30
- {% for tag in page.tags %}
31
- <span class="tag is-primary">{{ tag }}</span>
32
- {% endfor %}
33
- </div>
21
+ <div class="columns is-centered is-multiline">
22
+ <div class="column is-8-desktop is-10-tablet">
23
+ <div class="content">
24
+ <p>
25
+ <strong>Published: {{ page.date | date: '%b %-d, %Y' }} by {{ page.author }}</strong>
26
+ </p>
27
+ {{ content }}
28
+ </div>
34
29
 
35
- {% assign author = site.authors | where: 'name', page.author | first %}
36
- {% if author %}
37
- {% include author-media.html %}
38
- {% endif %}
30
+ <div class="tags">
31
+ {% for tag in page.tags %}
32
+ <span class="tag is-primary">{{ tag }}</span>
33
+ {% endfor %}
39
34
  </div>
35
+ </div>
36
+ <div class="column is-8-desktop is-10-tablet">
37
+ {% assign author = site.authors | where: 'name', page.author | first %}
38
+ {% if author %}
39
+ {% include author-media.html %}
40
+ {% endif %}
41
+ </div>
40
42
  </div>
41
-
data/_sass/_intro.scss CHANGED
@@ -1,5 +1,7 @@
1
+ @import "../node_modules/bulma/sass/utilities/initial-variables";
2
+
1
3
  .intro {
2
- padding: $gap;
3
- background: $light;
4
- margin-bottom: 3rem;
5
- }
4
+ padding: $gap;
5
+
6
+ margin-bottom: 3rem;
7
+ }
data/_sass/_layout.scss CHANGED
@@ -1,30 +1,41 @@
1
1
  .content {
2
- ul.pagination-list {
3
- list-style: none;
4
- margin-left: 0;
5
- margin-top: 0;
2
+ ul.pagination-list {
3
+ list-style: none;
4
+ margin-left: 0;
5
+ margin-top: 0;
6
6
 
7
- li+li {
8
- margin-top: 0;
9
- }
7
+ li + li {
8
+ margin-top: 0;
10
9
  }
10
+ }
11
11
  }
12
12
 
13
13
  div.highlight {
14
- margin-bottom: 1rem;
14
+ margin-bottom: 1rem;
15
15
  }
16
16
 
17
17
  @include desktop {
18
- .navbar-item {
19
- &.is-hoverable:hover {
20
- .navbar-dropdown {
21
- display: block;
22
- }
23
- }
18
+ .navbar-item {
19
+ &.is-hoverable:hover {
20
+ .navbar-dropdown {
21
+ display: block;
22
+ }
24
23
  }
24
+ }
25
25
  }
26
26
 
27
- .author-media {
28
- padding: 1.5rem;
29
- background: $light;
30
- }
27
+ a:not(.button) {
28
+ text-decoration: underline;
29
+
30
+ &:hover {
31
+ text-decoration-style: dotted;
32
+ }
33
+ }
34
+
35
+ .avatar-link {
36
+ display: inline-block;
37
+ &:hover,
38
+ &:focus {
39
+ outline: 1px solid $link;
40
+ }
41
+ }
data/_sass/_main.scss CHANGED
@@ -1,15 +1,12 @@
1
1
  @charset "utf-8";
2
2
 
3
3
  // Fonts
4
- @import url('https://fonts.googleapis.com/css?family=Open+Sans|Righteous&display=swap');
5
- $family-sans-serif: 'Open Sans', sans-serif;
6
- $family-serif: 'Righteous', cursive;
4
+ @import url("https://fonts.googleapis.com/css?family=Open+Sans|Righteous&display=swap");
5
+ $family-sans-serif: "Open Sans", sans-serif;
6
+ $family-serif: "Righteous", cursive;
7
7
  $family-primary: $family-sans-serif;
8
8
  $family-secondary: $family-serif;
9
9
  $title-family: $family-secondary;
10
- h1, h2, h3, h4, h5, h6 {
11
- font-family: $family-secondary;
12
- }
13
10
 
14
11
  // Colours
15
12
  $primary: #4fa6a3 !default;
@@ -18,22 +15,24 @@ $light: #f6f6f6;
18
15
  $white: #ffffff;
19
16
 
20
17
  //Cards
21
- $card-shadow: none;
22
- $card-footer-border-top: none;
23
- $card-background-color: $light;
18
+ $card-radius: 2px;
19
+ // $card-shadow: none;
20
+ // $card-footer-border-top: none;
21
+ // $card-background-color: $light;
24
22
 
25
23
  // Pagination
26
- $pagination-focus-border-color: $dark;
27
- $pagination-current-color: $white;
28
- $pagination-current-background-color: $dark;
29
- $pagination-current-border-color: $dark;
24
+ // $pagination-focus-border-color: $dark;
25
+ // $pagination-current-color: $white;
26
+ // $pagination-current-background-color: $dark;
27
+ // $pagination-current-border-color: $dark;
30
28
 
31
29
  // Radius
32
- $radius: 0;
33
- $radius-large: 0;
34
- $radius-small: 0;
30
+ $radius: 2px;
31
+ $radius-large: 2px;
32
+ $radius-small: 2px;
35
33
 
36
- @import "../node_modules/bulma/bulma.sass";
34
+ @import "../node_modules/bulma/sass";
35
+ @import "../node_modules/bulma/sass/utilities/mixins";
37
36
  @import "layout";
38
37
  @import "syntax";
39
- @import "intro";
38
+ @import "intro";
data/_sass/syntax.scss CHANGED
@@ -1,5 +1,9 @@
1
- .highlight table td { padding: 5px; }
2
- .highlight table pre { margin: 0; }
1
+ .highlight table td {
2
+ padding: 5px;
3
+ }
4
+ .highlight table pre {
5
+ margin: 0;
6
+ }
3
7
  .highlight .cm {
4
8
  color: #999988;
5
9
  font-style: italic;
@@ -17,7 +21,8 @@
17
21
  font-weight: bold;
18
22
  font-style: italic;
19
23
  }
20
- .highlight .c, .highlight .cd {
24
+ .highlight .c,
25
+ .highlight .cd {
21
26
  color: #999988;
22
27
  font-style: italic;
23
28
  }
@@ -82,7 +87,8 @@
82
87
  color: #445588;
83
88
  font-weight: bold;
84
89
  }
85
- .highlight .k, .highlight .kv {
90
+ .highlight .k,
91
+ .highlight .kv {
86
92
  color: #000000;
87
93
  font-weight: bold;
88
94
  }
@@ -101,7 +107,9 @@
101
107
  .highlight .mo {
102
108
  color: #009999;
103
109
  }
104
- .highlight .m, .highlight .mb, .highlight .mx {
110
+ .highlight .m,
111
+ .highlight .mb,
112
+ .highlight .mx {
105
113
  color: #009999;
106
114
  }
107
115
  .highlight .sb {
@@ -147,7 +155,7 @@
147
155
  color: #999999;
148
156
  }
149
157
  .highlight .nb {
150
- color: #0086B3;
158
+ color: #0086b3;
151
159
  }
152
160
  .highlight .nc {
153
161
  color: #445588;
data/assets/css/app.scss CHANGED
@@ -2,4 +2,4 @@
2
2
  ---
3
3
 
4
4
  // Import Main CSS file from theme
5
- @import "main";
5
+ @import "main";
data/assets/js/app.js CHANGED
@@ -1,25 +1,23 @@
1
- document.addEventListener('DOMContentLoaded', () => {
2
-
1
+ document.addEventListener("DOMContentLoaded", () => {
3
2
  // Get all "navbar-burger" elements
4
- const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
3
+ const $navbarBurgers = Array.prototype.slice.call(
4
+ document.querySelectorAll(".navbar-burger"),
5
+ 0
6
+ );
5
7
 
6
8
  // Check if there are any navbar burgers
7
9
  if ($navbarBurgers.length > 0) {
8
-
9
10
  // Add a click event on each of them
10
- $navbarBurgers.forEach( el => {
11
- el.addEventListener('click', () => {
12
-
11
+ $navbarBurgers.forEach((el) => {
12
+ el.addEventListener("click", () => {
13
13
  // Get the target from the "data-target" attribute
14
14
  const target = el.dataset.target;
15
15
  const $target = document.getElementById(target);
16
16
 
17
17
  // Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
18
- el.classList.toggle('is-active');
19
- $target.classList.toggle('is-active');
20
-
18
+ el.classList.toggle("is-active");
19
+ $target.classList.toggle("is-active");
21
20
  });
22
21
  });
23
22
  }
24
-
25
23
  });
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "artemis-blog-theme",
3
3
  "version": "1.0.0",
4
- "lockfileVersion": 2,
4
+ "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "node_modules/bulma": {
8
- "version": "0.9.2",
9
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.2.tgz",
10
- "integrity": "sha512-e14EF+3VSZ488yL/lJH0tR8mFWiEQVCMi/BQUMi2TGMBOk+zrDg4wryuwm/+dRSHJw0gMawp2tsW7X1JYUCE3A=="
8
+ "version": "1.0.2",
9
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.2.tgz",
10
+ "integrity": "sha512-D7GnDuF6seb6HkcnRMM9E739QpEY9chDzzeFrHMyEns/EXyDJuQ0XA0KxbBl/B2NTsKSoDomW61jFGFaAxhK5A=="
11
11
  }
12
12
  }
13
13
  }
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 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
@@ -37,6 +37,7 @@ bower install bulma
37
37
  ```
38
38
 
39
39
  ### Import
40
+
40
41
  After installation, you can import the CSS file into your project using this snippet:
41
42
 
42
43
  ```sh
@@ -53,7 +54,7 @@ Feel free to raise an issue or submit a pull request.
53
54
 
54
55
  Bulma is a **CSS** framework. As such, the sole output is a single CSS file: [bulma.css](https://github.com/jgthms/bulma/blob/master/css/bulma.css)
55
56
 
56
- You can either use that file, "out of the box", or download the Sass source files to customize the [variables](https://bulma.io/documentation/overview/variables/).
57
+ You can either use that file, "out of the box", or download the Sass source files to customize the [variables](https://bulma.io/documentation/customize/#docsNav).
57
58
 
58
59
  There is **no** JavaScript included. People generally want to use their own JS implementation (and usually already have one). Bulma can be considered "environment agnostic": it's just the style layer on top of the logic.
59
60
 
@@ -61,11 +62,11 @@ There is **no** JavaScript included. People generally want to use their own JS i
61
62
 
62
63
  Bulma uses [autoprefixer](https://github.com/postcss/autoprefixer) to make (most) Flexbox features compatible with earlier browser versions. According to [Can I use](https://caniuse.com/#feat=flexbox), Bulma is compatible with **recent** versions of:
63
64
 
64
- * Chrome
65
- * Edge
66
- * Firefox
67
- * Opera
68
- * Safari
65
+ - Chrome
66
+ - Edge
67
+ - Firefox
68
+ - Opera
69
+ - Safari
69
70
 
70
71
  Internet Explorer (10+) is only partially supported.
71
72
 
@@ -73,61 +74,72 @@ Internet Explorer (10+) is only partially supported.
73
74
 
74
75
  The documentation resides in the [docs](docs) directory, and is built with the Ruby-based [Jekyll](https://jekyllrb.com/) tool.
75
76
 
76
- Browse the [online documentation here.](https://bulma.io/documentation/overview/start/)
77
+ Browse the [online documentation here.](https://bulma.io/documentation/start/overview/)
77
78
 
78
79
  ## Related projects
79
80
 
80
- | Project | Description |
81
- |--------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|
82
- | [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors |
83
- | [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline |
84
- | [Vue Admin (dead)](https://github.com/vue-bulma/vue-admin) | Vue Admin framework powered by Bulma |
85
- | [Bulmaswatch](https://github.com/jenil/bulmaswatch) | Free themes for Bulma |
86
- | [Goldfish (read-only)](https://github.com/Caiyeon/goldfish) | Vault UI with Bulma, Golang, and Vue Admin |
87
- | [ember-bulma](https://github.com/open-tux/ember-bulma) | Ember addon providing a collection of UI components for Bulma |
88
- | [Bloomer](https://bloomer.js.org) | A set of React components for Bulma |
89
- | [React-bulma](https://github.com/kulakowka/react-bulma) | React.js components for Bulma |
90
- | [Buefy](https://buefy.org/) | Lightweight UI components for Vue.js based on Bulma |
91
- | [vue-bulma-components](https://github.com/vouill/vue-bulma-components) | Bulma components for Vue.js with straightforward syntax |
92
- | [BulmaJS](https://github.com/VizuaaLOG/BulmaJS) | Javascript integration for Bulma. Written in ES6 with a data-* API |
93
- | [Bulma-modal-fx](https://github.com/postare/bulma-modal-fx) | A set of modal window effects with CSS transitions and animations for Bulma |
94
- | [Bulma Stylus](https://github.com/groenroos/bulma-stylus) | Up-to-date 1:1 translation to Stylus
95
- | [Bulma.styl (read-only)](https://github.com/log1x/bulma.styl) | 1:1 Stylus translation of Bulma 0.6.11 |
96
- | [elm-bulma](https://github.com/surprisetalk/elm-bulma) | Bulma + Elm |
97
- | [elm-bulma-classes](https://github.com/ahstro/elm-bulma-classes) | Bulma classes prepared for usage with Elm |
98
- | [Bulma Customizer](https://bulma-customizer.bstash.io/) | Bulma Customizer &#8211; Create your own **bespoke** Bulma build |
99
- | [Fulma](https://fulma.github.io/Fulma/) | Wrapper around Bulma for [fable-react](https://github.com/fable-compiler/fable-react) |
100
- | [Laravel Enso](https://github.com/laravel-enso/enso) | SPA Admin Panel built with Bulma, VueJS and Laravel |
101
- | [Django Bulma](https://github.com/timonweb/django-bulma) | Integrates Bulma with Django |
102
- | [Bulma Templates](https://github.com/dansup/bulma-templates) | Free Templates for Bulma |
103
- | [React Bulma Components](https://github.com/couds/react-bulma-components) | Another React wrap on React for Bulma.io |
104
- | [purescript-bulma](https://github.com/sectore/purescript-bulma) | PureScript bindings for Bulma |
105
- | [Vue Datatable](https://github.com/laravel-enso/vuedatatable) | Bulma themed datatable based on Vue, Laravel & JSON templates |
106
- | [bulma-fluent](https://mubaidr.github.io/bulma-fluent/) | Fluent Design Theme for Bulma inspired by Microsoft’s Fluent Design System |
107
- | [csskrt-csskrt](https://github.com/4d11/csskrt-csskrt) | Automatically add Bulma classes to HTML files |
108
- | [bulma-pagination-react](https://github.com/hipstersmoothie/bulma-pagination-react) | Bulma pagination as a react component |
109
- | [bulma-helpers](https://github.com/jmaczan/bulma-helpers) | Functional / Atomic CSS classes for Bulma |
110
- | [bulma-swatch-hook](https://github.com/hipstersmoothie/bulma-swatch-hook) | Bulma swatches as a react hook and a component |
111
- | [BulmaWP (read-only)](https://github.com/tomhrtly/BulmaWP) | Starter WordPress theme for Bulma |
112
- | [Ralma](https://github.com/aldi/ralma) | Stateless Ractive.js Components for Bulma |
113
- | [Django Simple Bulma](https://github.com/python-discord/django-simple-bulma) | Lightweight integration of Bulma and Bulma-Extensions for your Django app |
114
- | [rbx](https://dfee.github.io/rbx) | Comprehensive React UI Framework written in TypeScript |
115
- | [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) | Free real-world Templates built with Bulma |
116
- | [Trunx](http://g14n.info/trunx) | Super Saiyan React components, son of awesome Bulma, implemented in TypeScript |
117
- | [@aybolit/bulma](https://github.com/web-padawan/aybolit/tree/master/packages/bulma) | Web Components library inspired by Bulma and Bulma-extensions |
118
- | [Drulma](https://www.drupal.org/project/drulma) | Drupal theme for Bulma. |
119
- | [Bulrush](https://github.com/textbook/bulrush) | A Bulma-based Python Pelican blog theme |
120
- | [Bulma Variable Export](https://github.com/service-paradis/bulma-variables-export) | Access Bulma Variables in Javascript/Typescript in project using Webpack |
121
- | [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
122
- | [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
123
- | [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
124
- | [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
125
- | [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
81
+ | Project | Description |
82
+ | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- |
83
+ | [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors |
84
+ | [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline |
85
+ | [BulmaRazor](https://github.com/loogn/bulmarazor) | A lightweight component library based on Bulma and Blazor. |
86
+ | [Vue Admin (dead)](https://github.com/vue-bulma/vue-admin) | Vue Admin framework powered by Bulma |
87
+ | [Bulmaswatch](https://github.com/jenil/bulmaswatch) | Free themes for Bulma |
88
+ | [Goldfish (read-only)](https://github.com/Caiyeon/goldfish) | Vault UI with Bulma, Golang, and Vue Admin |
89
+ | [ember-bulma](https://github.com/open-tux/ember-bulma) | Ember addon providing a collection of UI components for Bulma |
90
+ | [Bloomer](https://bloomer.js.org) | A set of React components for Bulma |
91
+ | [React-bulma](https://github.com/kulakowka/react-bulma) | React.js components for Bulma |
92
+ | [Buefy](https://buefy.org/) | Lightweight UI components for Vue.js based on Bulma |
93
+ | [vue-bulma-components](https://github.com/vouill/vue-bulma-components) | Bulma components for Vue.js with straightforward syntax |
94
+ | [BulmaJS](https://github.com/VizuaaLOG/BulmaJS) | Javascript integration for Bulma. Written in ES6 with a data-\* API |
95
+ | [Bulma-modal-fx](https://github.com/postare/bulma-modal-fx) | A set of modal window effects with CSS transitions and animations for Bulma |
96
+ | [Bulma Stylus](https://github.com/groenroos/bulma-stylus) | Up-to-date 1:1 translation to Stylus |
97
+ | [Bulma.styl (read-only)](https://github.com/log1x/bulma.styl) | 1:1 Stylus translation of Bulma 0.6.11 |
98
+ | [elm-bulma](https://github.com/surprisetalk/elm-bulma) | Bulma + Elm |
99
+ | [elm-bulma-classes](https://github.com/ahstro/elm-bulma-classes) | Bulma classes prepared for usage with Elm |
100
+ | [Bulma Customizer](https://bulma-customizer.bstash.io/) | Bulma Customizer &#8211; Create your own **bespoke** Bulma build |
101
+ | [Fulma](https://fulma.github.io/Fulma/) | Wrapper around Bulma for [fable-react](https://github.com/fable-compiler/fable-react) |
102
+ | [Laravel Enso](https://github.com/laravel-enso/enso) | SPA Admin Panel built with Bulma, VueJS and Laravel |
103
+ | [Django Bulma](https://github.com/timonweb/django-bulma) | Integrates Bulma with Django |
104
+ | [Bulma Templates](https://github.com/dansup/bulma-templates) | Free Templates for Bulma |
105
+ | [React Bulma Components](https://github.com/couds/react-bulma-components) | Another React wrap on React for Bulma.io |
106
+ | [purescript-bulma](https://github.com/sectore/purescript-bulma) | PureScript bindings for Bulma |
107
+ | [Vue Datatable](https://github.com/laravel-enso/vuedatatable) | Bulma themed datatable based on Vue, Laravel & JSON templates |
108
+ | [bulma-fluent](https://mubaidr.github.io/bulma-fluent/) | Fluent Design Theme for Bulma inspired by Microsoft’s Fluent Design System |
109
+ | [csskrt-csskrt](https://github.com/4d11/csskrt-csskrt) | Automatically add Bulma classes to HTML files |
110
+ | [bulma-pagination-react](https://github.com/hipstersmoothie/bulma-pagination-react) | Bulma pagination as a react component |
111
+ | [bulma-helpers](https://github.com/jmaczan/bulma-helpers) | Functional / Atomic CSS classes for Bulma |
112
+ | [bulma-swatch-hook](https://github.com/hipstersmoothie/bulma-swatch-hook) | Bulma swatches as a react hook and a component |
113
+ | [BulmaWP (read-only)](https://github.com/tomhrtly/BulmaWP) | Starter WordPress theme for Bulma |
114
+ | [Ralma](https://github.com/aldi/ralma) | Stateless Ractive.js Components for Bulma |
115
+ | [Django Simple Bulma](https://github.com/python-discord/django-simple-bulma) | Lightweight integration of Bulma and Bulma-Extensions for your Django app |
116
+ | [rbx](https://dfee.github.io/rbx) | Comprehensive React UI Framework written in TypeScript |
117
+ | [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) | Free real-world Templates built with Bulma |
118
+ | [Trunx](https://github.com/fibo/trunx) | Super Saiyan React components, son of awesome Bulma |
119
+ | [@aybolit/bulma](https://github.com/web-padawan/aybolit/tree/master/packages/bulma) | Web Components library inspired by Bulma and Bulma-extensions |
120
+ | [Drulma](https://www.drupal.org/project/drulma) | Drupal theme for Bulma. |
121
+ | [Bulrush](https://github.com/textbook/bulrush) | A Bulma-based Python Pelican blog theme |
122
+ | [Bulma Variable Export](https://github.com/service-paradis/bulma-variables-export) | Access Bulma Variables in Javascript/Typescript in project using Webpack |
123
+ | [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
124
+ | [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
125
+ | [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
126
+ | [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
127
+ | [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
128
+ | [Blazorise](https://github.com/Megabit/Blazorise) | Blazor component library with the support for Bulma CSS framework |
129
+ | [Oruga-Bulma](https://github.com/oruga-ui/theme-bulma) | Bulma theme for [Oruga UI](https://oruga.io) |
130
+ | [@bulvar/bulma](https://github.com/daniil4udo/bulvar/tree/master/packages/bulma) | Bulma with [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) support |
131
+ | [@angular-bulma](https://quinnjr.github.io/angular-bulma) | [Angular](https://angular.io/) directives and components to use in your Bulma projects |
132
+ | [Bulma CSS Class Completion](https://github.com/eliutdev/bulma-css-class-completion) | CSS class name completion for the HTML class attribute based on Bulma CSS classes. |
133
+ | [Crispy-Bulma](https://github.com/ckrybus/crispy-bulma) | Bulma template pack for django-crispy-forms |
134
+ | [CASE](https://case.app) | CASE is Lightweight Backend-as-a-Service with essential features: DB, Admin panel, API, JS SDK |
135
+ | [Reactive Bulma](https://github.com/NicolasOmar/reactive-bulma) | A component library based on React, Bulma, Typescript and Rollup |
136
+
137
+ <p>Browser testing via <a href="https://www.lambdatest.com/" target="_blank"><img src="https://www.lambdatest.com/resources/images/logo-white.svg" style="vertical-align: middle;margin-left:5px" width="147" height="26" /></a></p>
126
138
 
127
139
  ## Copyright and license ![Github](https://img.shields.io/github/license/jgthms/bulma?logo=Github)
128
140
 
129
- Code copyright 2021 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
141
+ Code copyright 2023 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
130
142
 
131
143
  [npm-link]: https://www.npmjs.com/package/bulma
132
- [awesome-link]: https://github.com/awesome-css-group/awesome-css
144
+ [awesome-link]: https://github.com/awesome-css-group/awesome-css
133
145
  [awesome-badge]: https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg
@@ -0,0 +1,4 @@
1
+ @charset "utf-8";
2
+
3
+ /*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
4
+ @use "sass";