mere-blog-theme 0.5 → 1.0.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.
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 +50 -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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b925584ca8af3d16872215a6838e3fde4b7695bdff0b112e422bc671733ab3c
4
- data.tar.gz: 7bc2b1856e67ae9e12eddf2dfd25085242eb0b7870ea9982837963d1d54f6867
3
+ metadata.gz: 9b380848912dbdc704ac35b4e8fa9b69afee97da370bc2702d813e3ee0d522ea
4
+ data.tar.gz: 69b06f5b7b14ad5102b2c1bf198a141f5707b9263191565feb62121564d8573a
5
5
  SHA512:
6
- metadata.gz: bcb62e6bb016eaa3a10e78a1d152e1e42b9ad2498cb7962d5bfde646eb6f3234ddfba637b6481c95fd7d771d182c670e9265688dc3f369dd2c050e78da8a79e2
7
- data.tar.gz: 5620d6add29d2e223b726b6fb96a4a3cdf2bf2af06ba3c11609ad43aa9e0329292fed579b8019a41d88f6674ed20ae53f728f58427571a5bbb63607e9efd29ec
6
+ metadata.gz: 4b2869c724ecb31fdbec0e5e92f57842d9c66976505ef8332bc54cb6af74c70f99c45790e573456f03a9bac4d8179a8c2b697f773c969ba4f34a4c7baf13975f
7
+ data.tar.gz: 3145f13447e010b656055bc4d6d1f6990f871249075f64c78722ce151135398b4559f1ccb0760660bb7f5c0e4279b086d6a4753629e13b19e00719ec383156a2
data/README.md CHANGED
@@ -1,14 +1,13 @@
1
1
  # mere-blog-theme
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/mere-blog-theme.svg)](https://badge.fury.io/rb/mere-blog-theme)
3
+ [![Gem Version](https://badge.fury.io/rb/mere-blog-theme.svg)](https://badge.fury.io/rb/mere-blog-theme)
4
4
  ![Gem](https://img.shields.io/gem/dt/mere-blog-theme)
5
5
 
6
6
  Mere is a minimal and simple blog theme, and nothing more, for use with Jekyll and GitHub Pages. It has been built with the Bulma frontend framework.
7
7
 
8
- It has a homepage which displays the latest 6 posts and a paginated blog page used to list out all blog posts.
9
-
10
- **Mere Blog Theme uses Jekyll 3.9 for compatibility with GitHub Pages**
8
+ It has a homepage which displays the latest 6 posts and a paginated blog page used to list out all blog posts.
11
9
 
10
+ **Mere Blog Theme uses Jekyll 4.3 for compatibility with Bulma v1**
12
11
 
13
12
  ## Installation
14
13
 
@@ -32,18 +31,27 @@ Or install it yourself as:
32
31
 
33
32
  $ gem install mere-blog-theme
34
33
 
34
+ ## Upgrading to v1
35
+
36
+ Version 1 of mere-blog-theme uses version 1 of Bulma. Bulma v1 has been updated to use dart sass and Jekyll was updated to use dart sass from version 4.3 and up, so this is now the minimum supported version of Jekyll for this theme.
37
+
38
+ The standard build for GitHub pages only works with Jekyll 3.9, so you will need to migrate to using a GitHub action to build and deploy your site.
39
+
40
+ Please read through the [Jekyll docs for GitHub Actions](https://jekyllrb.com/docs/continuous-integration/github-actions/) for more information.
41
+
35
42
  ## Usage
36
43
 
37
- * [Blog Setup](#blog-setup)
38
- * [Posts](#posts)
39
- * [Post Intro](#post-intro)
40
- * [Homepage](#homepage)
41
- * [Authors](#authors)
42
- * [Google Analytics](#google-analytics)
44
+ - [Blog Setup](#blog-setup)
45
+ - [Posts](#posts)
46
+ - [Post Intro](#post-intro)
47
+ - [Homepage](#homepage)
48
+ - [Authors](#authors)
49
+ - [Google Analytics](#google-analytics)
50
+ - [Themes](#themes)
43
51
 
44
52
  ### Blog Setup
45
53
 
46
- As of 0.4, the blog posts will be displayed on the homepage including pagination, instead of in a separate blog page.
54
+ As of 0.4, the blog posts will be displayed on the homepage including pagination, instead of in a separate blog page.
47
55
 
48
56
  **The homepage page needs to be called index.html for the blog pagination**
49
57
 
@@ -56,7 +64,7 @@ paginate_path: "/page:num"
56
64
 
57
65
  ### Posts
58
66
 
59
- Posts should be created in the _posts directory as per standard Jekyll usage. The front matter should contain the layout of post, the image to use in the header and the homepage / blog page, the title of the post and the author of the post. You can also set a subtitle for the post if you want to.
67
+ Posts should be created in the `_posts` directory as per standard Jekyll usage. The front matter should contain the layout of post, the image to use in the header and the homepage / blog page, the title of the post and the author of the post. You can also set a subtitle for the post if you want to.
60
68
 
61
69
  ```yaml
62
70
  layout: post
@@ -65,11 +73,11 @@ image: /img/home.jpg
65
73
  author: C.S. Rhymes
66
74
  ```
67
75
 
68
- Wide images will work best, with a minimum width of 1400px.
76
+ Wide images will work best, with a minimum width of 1400px.
69
77
 
70
78
  #### Post Intro
71
79
 
72
- Version 0.3 allows you to provide a intro and an intro image in your frontmatter. When creating your post add a short `intro` text an `intro_image` as a path to an image and then specify the `intro_image_ratio` which should be a [Bulma image](https://bulma.io/documentation/elements/image/) class.
80
+ Version 0.3 allows you to provide a intro and an intro image in your frontmatter. When creating your post add a short `intro` text an `intro_image` as a path to an image and then specify the `intro_image_ratio` which should be a [Bulma image](https://bulma.io/documentation/elements/image/) class.
73
81
 
74
82
  ```yaml
75
83
  layout: post
@@ -84,7 +92,7 @@ Only the intro is required if you want to display it. If you don't want an image
84
92
 
85
93
  ### Homepage
86
94
 
87
- Finally, configure the homepage by creating an `index.html` page and configure the frontmatter with the layout of homepage, the title, subtitle (optional) and the image. You can set the hero_height to is-large if you want to make the homepage header a bit larger.
95
+ Finally, configure the homepage by creating an `index.html` page and configure the frontmatter with the layout of homepage, the title, subtitle (optional) and the image. You can set the hero_height to is-large if you want to make the homepage header a bit larger.
88
96
 
89
97
  ```yaml
90
98
  layout: homepage
@@ -96,9 +104,9 @@ hero_height: is-large
96
104
 
97
105
  ### Authors
98
106
 
99
- To enable the authors section, create a directory named `_authors` and create a page for each author within it. The author pages should have front matter in the following format.
107
+ To enable the authors section, create a directory named `_authors` and create a page for each author within it. The author pages should have front matter in the following format.
100
108
 
101
- **NOTE** The author name should match the author name in their posts exactly.
109
+ **NOTE** The author name should match the author name in their posts exactly.
102
110
 
103
111
  ```yaml
104
112
  layout: author
@@ -110,8 +118,8 @@ avatar: /img/avatar.png
110
118
  website: https://www.csrhymes.com
111
119
  ```
112
120
 
113
- The website and avatar are optional, but if you are stuck for author images, why not try [https://getavataaars.com](https://getavataaars.com). Square images work best. You can then write about the author in the page content.
114
-
121
+ The website and avatar are optional, but if you are stuck for author images, why not try [https://getavataaars.com](https://getavataaars.com). Square images work best. You can then write about the author in the page content.
122
+
115
123
  Next, create an `authors.md` page in the root of your site and set the layout to authors.
116
124
 
117
125
  ```yaml
@@ -120,7 +128,7 @@ title: Authors
120
128
  description: The authors page
121
129
  ```
122
130
 
123
- Add authors as a collection in your _config.yml file with output set to true so the pages are generated.
131
+ Add authors as a collection in your `_config.yml` file with output set to true so the pages are generated.
124
132
 
125
133
  ```yaml
126
134
  collections:
@@ -128,15 +136,15 @@ collections:
128
136
  output: true
129
137
  ```
130
138
 
131
- When you build your site, the authors link will appear in the navbar. The authors page will display the authors you have added. You can then click on their name or image to view the author page, along with a list of their 4 latest posts.
139
+ When you build your site, the authors link will appear in the navbar. The authors page will display the authors you have added. You can then click on their name or image to view the author page, along with a list of their 4 latest posts.
132
140
 
133
- There will also be a link back to the authors page at the bottom of the post.
141
+ There will also be a link back to the authors page at the bottom of the post.
134
142
 
135
143
  #### Author Social Profiles
136
144
 
137
145
  **New in 0.2.1 **
138
146
 
139
- You can add links to an author's social profile pages by adding the profile name and link to the front matter in the author's page (such as _authors/chris.md). The below social profiles are available.
147
+ You can add links to an author's social profile pages by adding the profile name and link to the front matter in the author's page (such as `_authors/chris.md`). The below social profiles are available.
140
148
 
141
149
  ```yaml
142
150
  facebook: https://www.facebook.com/
@@ -153,6 +161,19 @@ stack_overflow: https://stackoverflow.com/
153
161
 
154
162
  To enable Google Analytics add `google_analytics: UA-xxxxxxxx` to your `_config.yml` replacing the UA-xxxxxxxx with your Google Analytics property.
155
163
 
164
+ ### Themes
165
+
166
+ Bulma v1 has a concept of themes and [automatic dark mode](https://bulma.io/documentation/features/dark-mode/).
167
+
168
+ > Modern browsers come with a way to detect if a user has set their theme preference to light or dark by using the prefers-color-scheme keyword.
169
+
170
+ To disable this behaviour and force a theme, set the `force_theme:` in the \_config.yml to either 'dark' or 'light'.
171
+
172
+ ```yaml
173
+ # _config.yml
174
+ force_theme: light
175
+ ```
176
+
156
177
  ## Contributing
157
178
 
158
179
  Bug reports and pull requests are welcome on GitHub at https://github.com/chrisrhymes/mere-blog-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -169,4 +190,3 @@ To add a custom directory to your theme-gem, please edit the regexp in `mere-blo
169
190
  ## License
170
191
 
171
192
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
172
-
@@ -1,24 +1,27 @@
1
- <div class="author-media">
1
+ <div class="card">
2
+ <div class="card-content">
2
3
  <div class="media">
3
- <figure class="media-left">
4
- <a href="{{ author.url | prepend: site.baseurl }}">
5
- <p class="image is-64x64">
6
- {% if author.avatar %}
7
- <img src="{{ author.avatar | prepend: site.baseurl }}" alt="{{ author.name }}" />
8
- {% else %}
9
- <i class="fas fa-user fa-4x"></i>
10
- {% endif %}
11
- </p>
12
- </a>
13
- </figure>
14
- <div class="media-content">
15
- <a href="{{ author.url | prepend: site.baseurl }}">
16
- <p class="title is-5">{{ author.name }}</p>
17
- </a>
18
- <p class="subtitle is-5">{{ author.position }}</p>
19
- <div class="content">
20
- <p>{{ author.description }}</p>
21
- </div>
4
+ <figure class="media-left">
5
+ <a href="{{ author.url | relative_url }}" class="avatar-link">
6
+ <p class="image is-64x64">
7
+ {% if author.avatar %}
8
+ <img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}">
9
+ {% else %}
10
+ <i class="fas fa-user fa-4x"></i>
11
+ {% endif %}
12
+ </p>
13
+ </a>
14
+ </figure>
15
+ <div class="media-content">
16
+ <a href="{{ author.url | relative_url }}" class="is-block">
17
+ <p class="title is-5">{{ author.name }}</p>
18
+ </a>
19
+
20
+ <p class="subtitle is-5">{{ author.position }}</p>
21
+ <div class="content">
22
+ <p>{{ author.description }}</p>
22
23
  </div>
24
+ </div>
23
25
  </div>
26
+ </div>
24
27
  </div>
@@ -1,8 +1,11 @@
1
+ <!-- Google tag (gtag.js) -->
1
2
  <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
2
3
  <script>
3
- window['ga-disable-{{ site.google_analytics }}'] = window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1";
4
4
  window.dataLayer = window.dataLayer || [];
5
- function gtag(){dataLayer.push(arguments);}
5
+ function gtag() {
6
+ dataLayer.push(arguments);
7
+ }
8
+
6
9
  gtag('js', new Date());
7
10
  gtag('config', '{{ site.google_analytics }}');
8
- </script>
11
+ </script>
data/_includes/head.html CHANGED
@@ -1,13 +1,23 @@
1
1
  <head>
2
- <meta charset="utf-8">
3
- <meta name="viewport" content="width=device-width, initial-scale=1">
4
- <title>{{ page.title }} - {{ site.title }}</title>
5
- <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/app.css">
6
- <link rel="shortcut icon" type="image/png" href="{{ site.baseurl }}/favicon.png" />
7
- <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
8
- {% seo %}
9
- {%- if site.google_analytics -%}
10
- {%- include google-analytics.html -%}
11
- {%- endif -%}
12
- {%- include head-scripts.html -%}
2
+ <meta charset="utf-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1">
4
+ <title>
5
+ {{ page.title }}
6
+ -
7
+ {{ site.title }}
8
+ </title>
9
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/app.css">
10
+ <link rel="shortcut icon" type="image/png" href="{{ site.baseurl }}/favicon.png">
11
+ <link
12
+ rel="stylesheet"
13
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
14
+ integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
15
+ crossorigin="anonymous"
16
+ referrerpolicy="no-referrer"
17
+ >
18
+ {% seo %}
19
+ {%- if site.google_analytics -%}
20
+ {%- include google-analytics.html -%}
21
+ {%- endif -%}
22
+ {%- include head-scripts.html -%}
13
23
  </head>
data/_includes/hero.html CHANGED
@@ -1,8 +1,13 @@
1
- <section class="hero {% if page.hero_height %} {{ page.hero_height }} {% else %} is-medium {% endif %} is-bold is-dark" {% if page.image %} style="background: url('{{ page.image | prepend: site.baseurl }}') no-repeat center center; background-size: cover;" {% endif %}>
2
- <div class="hero-body">
3
- <div class="container">
4
- <p class="title is-2">{{ page.title }}</p>
5
- <p class="subtitle is-3">{{ page.subtitle }}</p>
6
- </div>
1
+ <section
2
+ class="hero {% if page.hero_height %} {{ page.hero_height }} {% else %} is-medium {% endif %} is-bold is-dark"
3
+ {% if page.image %}
4
+ style="background: url('{{ page.image | relative_url }}') no-repeat center center; background-size: cover;"
5
+ {% endif %}
6
+ >
7
+ <div class="hero-body">
8
+ <div class="container">
9
+ <h1 class="title is-2 is-family-secondary">{{ page.title }}</h1>
10
+ <p class="subtitle is-3">{{ page.subtitle }}</p>
7
11
  </div>
8
- </section>
12
+ </div>
13
+ </section>
@@ -1,21 +1,21 @@
1
1
  <div class="navbar is-white">
2
- <div class="container">
3
- <div class="navbar-brand">
4
- <a class="navbar-item" href="{{ site.baseurl }}/">
5
- {{ site.title }}
6
- </a>
7
- <a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navMenu">
8
- <span aria-hidden="true"></span>
9
- <span aria-hidden="true"></span>
10
- <span aria-hidden="true"></span>
11
- </a>
12
- </div>
13
- <div class="navbar-menu" id="navMenu">
14
- <div class="navbar-end">
15
- {% if site.authors %}
16
- <a class="navbar-item" href="{{ site.baseurl }}/authors/">Authors</a>
17
- {% endif %}
18
- </div>
19
- </div>
2
+ <div class="container">
3
+ <div class="navbar-brand">
4
+ <a class="navbar-item" href="{{ site.baseurl }}/">
5
+ {{ site.title }}
6
+ </a>
7
+ <a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navMenu">
8
+ <span aria-hidden="true"></span>
9
+ <span aria-hidden="true"></span>
10
+ <span aria-hidden="true"></span>
11
+ </a>
20
12
  </div>
21
- </div>
13
+ <div class="navbar-menu" id="navMenu">
14
+ <div class="navbar-end">
15
+ {% if site.authors %}
16
+ <a class="navbar-item" href="{{ site.baseurl }}/authors/">Authors</a>
17
+ {% endif %}
18
+ </div>
19
+ </div>
20
+ </div>
21
+ </div>
@@ -1,23 +1,43 @@
1
1
  <nav class="pagination is-centered">
2
- {% if paginator.previous_page %}
3
- <a href="{{ site.baseurl }}{{ paginator.previous_page_path }}" class="pagination-previous is-info"><i class="fas fa-chevron-left"></i></a>
4
- {% else %}
2
+ {% if paginator.previous_page %}
3
+ <a href="{{ site.baseurl }}{{ paginator.previous_page_path }}" class="pagination-previous is-info"
4
+ ><i class="fas fa-chevron-left"></i
5
+ ></a>
6
+ {% else %}
5
7
  <p class="pagination-previous" disabled><i class="fas fa-chevron-left"></i></p>
6
- {% endif %}
7
- {% if paginator.next_page %}
8
- <a href="{{ site.baseurl }}{{ paginator.next_page_path }}" class="pagination-next is-info"><i class="fas fa-chevron-right"></i></a>
9
- {% else %}
10
- <p class="pagination-next" disabled ><i class="fas fa-chevron-right"></i></p>
11
- {% endif %}
12
- <ul class="pagination-list">
13
- {% for page in (1..paginator.total_pages) %}
14
- {% if page == paginator.page %}
15
- <li><a class="pagination-link is-current">{{ page }}</a></li>
16
- {% elsif page == 1 %}
17
- <li><a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="pagination-link">{{ page }}</a></li>
18
- {% else %}
19
- <li><a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="pagination-link">{{ page }}</a></li>
20
- {% endif %}
21
- {% endfor %}
22
- </ul>
23
- </nav>
8
+ {% endif %}
9
+ {% if paginator.next_page %}
10
+ <a href="{{ site.baseurl }}{{ paginator.next_page_path }}" class="pagination-next is-info"
11
+ ><i class="fas fa-chevron-right"></i
12
+ ></a>
13
+ {% else %}
14
+ <p class="pagination-next" disabled><i class="fas fa-chevron-right"></i></p>
15
+ {% endif %}
16
+ <ul class="pagination-list">
17
+ {% for page in (1..paginator.total_pages) %}
18
+ {% if page == paginator.page %}
19
+ <li>
20
+ <a class="pagination-link is-current">{{ page }}</a>
21
+ </li>
22
+ {% elsif page == 1 %}
23
+ <li>
24
+ <a
25
+ href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}"
26
+ class="pagination-link"
27
+ >
28
+ {{- page -}}
29
+ </a>
30
+ </li>
31
+ {% else %}
32
+ <li>
33
+ <a
34
+ href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}"
35
+ class="pagination-link"
36
+ >
37
+ {{- page -}}
38
+ </a>
39
+ </li>
40
+ {% endif %}
41
+ {% endfor %}
42
+ </ul>
43
+ </nav>
@@ -1,17 +1,20 @@
1
1
  <div class="card">
2
- <div class="card-image">
3
- <img src="{{ post.image | prepend: site.baseurl }}" alt="{{ post.title }}" width="100%">
2
+ <div class="card-image">
3
+ <img src="{{ post.image | relative_url }}" alt="{{ post.title }}" width="100%">
4
+ </div>
5
+ <div class="card-content">
6
+ <div class="content">
7
+ <a href="{{ site.baseurl }}{{ post.url }}">
8
+ <p class="title is-4">
9
+ {{ post.title }}
10
+ </p>
11
+ </a>
12
+
13
+ <p class="subtitle is-6">Published {{ post.date | date: '%b %-d, %Y' }} by {{ post.author }}</p>
14
+ <p>{{ post.excerpt | strip_html | strip_newlines | truncate: 200 }}</p>
4
15
  </div>
5
- <div class="card-content">
6
- <div class="content">
7
- <a href="{{ site.baseurl }}{{ post.url }}">
8
- <p class="title is-4">{{ post.title}}</p>
9
- </a>
10
- <p class="subtitle is-6">Published {{ post.date | date: "%b %-d, %Y" }} by {{ post.author }}</p>
11
- <p>{{ post.excerpt | strip_html | strip_newlines | truncate: 200 }}</p>
12
- </div>
13
- <div class="has-text-centered">
14
- <a href="{{ site.baseurl }}{{ post.url }}" class="button is-dark is-fullwidth">Read more</a>
15
- </div>
16
- </div>
17
- </div>
16
+ </div>
17
+ <div class="card-footer">
18
+ <a href="{{ site.baseurl }}{{ post.url }}" class="button is-dark card-footer-item">Read more</a>
19
+ </div>
20
+ </div>
@@ -1,50 +1,49 @@
1
1
  <div class="buttons">
2
- {% if page.facebook %}
2
+ {% if page.facebook %}
3
3
  <a href="{{ page.facebook }}" class="button is-dark" target="_blank">
4
- <i class="fab fa-facebook-f"></i>
4
+ <i class="fab fa-facebook-f"></i>
5
5
  </a>
6
- {% endif %}
6
+ {% endif %}
7
7
 
8
- {% if page.twitter %}
8
+ {% if page.twitter %}
9
9
  <a href="{{ page.twitter }}" class="button is-dark" target="_blank">
10
- <i class="fab fa-twitter"></i>
10
+ <i class="fab fa-twitter"></i>
11
11
  </a>
12
- {% endif %}
12
+ {% endif %}
13
13
 
14
- {% if page.github %}
14
+ {% if page.github %}
15
15
  <a href="{{ page.github }}" class="button is-dark" target="_blank">
16
- <i class="fab fa-github"></i>
16
+ <i class="fab fa-github"></i>
17
17
  </a>
18
- {% endif %}
18
+ {% endif %}
19
19
 
20
- {% if page.gitlab %}
20
+ {% if page.gitlab %}
21
21
  <a href="{{ page.gitlab }}" class="button is-dark" target="_blank">
22
- <i class="fab fa-gitlab"></i>
22
+ <i class="fab fa-gitlab"></i>
23
23
  </a>
24
- {% endif %}
24
+ {% endif %}
25
25
 
26
- {% if page.instagram %}
26
+ {% if page.instagram %}
27
27
  <a href="{{ page.instagram }}" class="button is-dark" target="_blank">
28
- <i class="fab fa-instagram"></i>
28
+ <i class="fab fa-instagram"></i>
29
29
  </a>
30
- {% endif %}
30
+ {% endif %}
31
31
 
32
- {% if page.linkedin %}
32
+ {% if page.linkedin %}
33
33
  <a href="{{ page.linkedin }}" class="button is-dark" target="_blank">
34
- <i class="fab fa-linkedin-in"></i>
34
+ <i class="fab fa-linkedin-in"></i>
35
35
  </a>
36
- {% endif %}
36
+ {% endif %}
37
37
 
38
- {% if page.medium %}
38
+ {% if page.medium %}
39
39
  <a href="{{ page.medium }}" class="button is-dark" target="_blank">
40
- <i class="fab fa-medium-m"></i>
40
+ <i class="fab fa-medium-m"></i>
41
41
  </a>
42
- {% endif %}
42
+ {% endif %}
43
43
 
44
- {% if page.stack_overflow %}
44
+ {% if page.stack_overflow %}
45
45
  <a href="{{ page.stack_overflow }}" class="button is-dark" target="_blank">
46
- <i class="fab fa-stack-overflow"></i>
46
+ <i class="fab fa-stack-overflow"></i>
47
47
  </a>
48
- {% endif %}
49
-
50
- </div>
48
+ {% endif %}
49
+ </div>
data/_layouts/author.html CHANGED
@@ -4,52 +4,64 @@ layout: default
4
4
  {% assign page.title = page.name %}
5
5
 
6
6
  <div class="columns is-multiline">
7
- <div class="column is-3">
8
- {% if page.avatar %}
9
- <p class="image is-square">
10
- <img src="{{ page.avatar | prepend: site.baseurl }}" alt="{{ page.name }}" />
11
- </p>
12
- {% else %}
13
- <div class="has-text-centered">
14
- <i class="fas fa-user fa-4x"></i>
15
- </div>
16
- {% endif %}
17
- </div>
18
- <div class="column">
7
+ <div class="column is-3">
8
+ {% if page.avatar %}
9
+ <p class="image is-square">
10
+ <img src="{{ page.avatar | relative_url }}" alt="{{ page.name }}">
11
+ </p>
12
+ {% else %}
13
+ <div class="has-text-centered">
14
+ <i class="fas fa-user fa-4x"></i>
15
+ </div>
16
+ {% endif %}
17
+ </div>
18
+ <div class="column">
19
+ <div class="columns is-multiline">
20
+ <div class="column is-full">
19
21
  <p class="title is-4">{{ page.name }}</p>
20
22
  <p class="subtitle is-4 is-gapless">{{ page.position }}</p>
23
+ </div>
21
24
 
22
- {% if page.website %}
23
- <p class="subtitle is-6"><a href="{{ page.website }}" title="Author Website">{{ page.website }}</a></p>
24
- {% endif %}
25
-
25
+ {% if page.website %}
26
+ <div class="column is-full">
27
+ <p class="subtitle is-6">
28
+ <a href="{{ page.website }}" title="Author Website">{{ page.website }}</a>
29
+ </p>
30
+ </div>
31
+ {% endif %}
32
+ <div class="column is-full">
26
33
  {% include social-buttons.html %}
27
-
34
+ </div>
35
+ <div class="column is-full">
28
36
  <div class="content">
29
- {{ content }}
37
+ {{ content }}
30
38
  </div>
31
-
39
+ </div>
40
+ <div class="column is-full">
32
41
  <p class="title is-5">Latest Posts</p>
33
- <div class="columns is-multiline">
34
- {% assign filtered_posts = site.posts | where: 'author', page.name %}
35
- {% for post in filtered_posts limit: 4 %}
36
- <div class="column is-12">
37
- <div class="card">
38
- <div class="card-content">
39
- <p class="title is-5">{{ post.title }}</p>
40
- <p class="subtitle is-6">Published {{ post.date | date: "%b %-d, %Y" }} by {{ post.author }}</p>
42
+ </div>
43
+
44
+ {% assign filtered_posts = site.posts | where: 'author', page.name %}
45
+ {% for post in filtered_posts limit: 4 %}
46
+ <div class="column is-12">
47
+ <div class="card">
48
+ <div class="card-content">
49
+ <a href="{{ post.url | relative_url }}" class="is-block">
50
+ <p class="title is-5">{{ post.title }}</p>
51
+ </a>
52
+
53
+ <div class="content">
54
+ <p class="">Published {{ post.date | date: '%b %-d, %Y' }} by {{ post.author }}</p>
55
+ <p>{{ post.excerpt | strip_html | strip_newlines | truncate: 100 }}</p>
56
+ </div>
57
+ </div>
41
58
 
42
- <div class="content">
43
- {{ post.excerpt | strip_html | strip_newlines | truncate: 100 }}
44
- </div>
45
- <a href="{{ post.url | prepend: site.baseurl }}" class="button is-dark is-fullwidth">Read more</a>
46
- </div>
47
- </div>
48
- <p class="title"></p>
49
- </div>
50
- {% endfor %}
59
+ <div class="card-footer">
60
+ <a href="{{ post.url | relative_url }}" class="button is-dark card-footer-item">Read more</a>
61
+ </div>
62
+ </div>
51
63
  </div>
64
+ {% endfor %}
52
65
  </div>
66
+ </div>
53
67
  </div>
54
-
55
-