mere-blog-theme 0.4 → 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 (185) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +46 -22
  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 +13 -0
  22. data/node_modules/bulma/LICENSE +1 -1
  23. data/node_modules/bulma/README.md +72 -57
  24. data/node_modules/bulma/bulma.scss +4 -0
  25. data/node_modules/bulma/css/bulma.css +18892 -8672
  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 +42 -62
  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 +86 -106
  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 +14 -6
  119. data/package.json +1 -1
  120. metadata +116 -99
  121. data/node_modules/bulma/CHANGELOG.md +0 -1459
  122. data/node_modules/bulma/bulma.sass +0 -10
  123. data/node_modules/bulma/css/bulma-rtl.css +0 -11331
  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 -4
  127. data/node_modules/bulma/sass/base/generic.sass +0 -142
  128. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  129. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  130. data/node_modules/bulma/sass/components/_all.sass +0 -14
  131. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -75
  132. data/node_modules/bulma/sass/components/card.sass +0 -79
  133. data/node_modules/bulma/sass/components/dropdown.sass +0 -81
  134. data/node_modules/bulma/sass/components/level.sass +0 -77
  135. data/node_modules/bulma/sass/components/media.sass +0 -52
  136. data/node_modules/bulma/sass/components/menu.sass +0 -57
  137. data/node_modules/bulma/sass/components/message.sass +0 -99
  138. data/node_modules/bulma/sass/components/modal.sass +0 -113
  139. data/node_modules/bulma/sass/components/navbar.sass +0 -441
  140. data/node_modules/bulma/sass/components/pagination.sass +0 -150
  141. data/node_modules/bulma/sass/components/panel.sass +0 -119
  142. data/node_modules/bulma/sass/components/tabs.sass +0 -174
  143. data/node_modules/bulma/sass/elements/_all.sass +0 -15
  144. data/node_modules/bulma/sass/elements/box.sass +0 -24
  145. data/node_modules/bulma/sass/elements/button.sass +0 -323
  146. data/node_modules/bulma/sass/elements/container.sass +0 -24
  147. data/node_modules/bulma/sass/elements/content.sass +0 -155
  148. data/node_modules/bulma/sass/elements/form.sass +0 -1
  149. data/node_modules/bulma/sass/elements/icon.sass +0 -21
  150. data/node_modules/bulma/sass/elements/image.sass +0 -71
  151. data/node_modules/bulma/sass/elements/notification.sass +0 -48
  152. data/node_modules/bulma/sass/elements/other.sass +0 -39
  153. data/node_modules/bulma/sass/elements/progress.sass +0 -67
  154. data/node_modules/bulma/sass/elements/table.sass +0 -129
  155. data/node_modules/bulma/sass/elements/tag.sass +0 -136
  156. data/node_modules/bulma/sass/elements/title.sass +0 -70
  157. data/node_modules/bulma/sass/form/_all.sass +0 -8
  158. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -21
  159. data/node_modules/bulma/sass/form/file.sass +0 -180
  160. data/node_modules/bulma/sass/form/input-textarea.sass +0 -64
  161. data/node_modules/bulma/sass/form/select.sass +0 -85
  162. data/node_modules/bulma/sass/form/shared.sass +0 -55
  163. data/node_modules/bulma/sass/form/tools.sass +0 -213
  164. data/node_modules/bulma/sass/grid/_all.sass +0 -4
  165. data/node_modules/bulma/sass/grid/columns.sass +0 -504
  166. data/node_modules/bulma/sass/grid/tiles.sass +0 -34
  167. data/node_modules/bulma/sass/helpers/_all.sass +0 -10
  168. data/node_modules/bulma/sass/helpers/color.sass +0 -37
  169. data/node_modules/bulma/sass/helpers/float.sass +0 -8
  170. data/node_modules/bulma/sass/helpers/other.sass +0 -8
  171. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  172. data/node_modules/bulma/sass/helpers/position.sass +0 -5
  173. data/node_modules/bulma/sass/helpers/spacing.sass +0 -28
  174. data/node_modules/bulma/sass/helpers/typography.sass +0 -98
  175. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  176. data/node_modules/bulma/sass/layout/_all.sass +0 -5
  177. data/node_modules/bulma/sass/layout/footer.sass +0 -9
  178. data/node_modules/bulma/sass/layout/hero.sass +0 -145
  179. data/node_modules/bulma/sass/layout/section.sass +0 -13
  180. data/node_modules/bulma/sass/utilities/_all.sass +0 -8
  181. data/node_modules/bulma/sass/utilities/animations.sass +0 -5
  182. data/node_modules/bulma/sass/utilities/controls.sass +0 -50
  183. data/node_modules/bulma/sass/utilities/functions.sass +0 -115
  184. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -78
  185. data/node_modules/bulma/sass/utilities/mixins.sass +0 -285
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d0ac442faa88386381a58df281e105697c89146627967af36e233577cc86329
4
- data.tar.gz: 6c114f69988c5ebae74b27a66ca93b6b330694d2b9fc9e18d3049628bcb3af55
3
+ metadata.gz: 71f70671d8a376fef723f1569a639db6d471bfc360a79d667a3917c4c7b7d556
4
+ data.tar.gz: bbfaceda33ef1d4ed11f1c35549e58a384ca2c01a2e0277333ffbcc3a4d5792c
5
5
  SHA512:
6
- metadata.gz: 36006753858546a3b8069cbe6ace176ffc0204184edd0aa34bea1016bef3e87f4976d2c93436d91a52a6501863c91b0ac2ccc6153e5b1bf56c0eae5f5786e821
7
- data.tar.gz: 0b4afaad512616065427d2243e764109bd282f060e0243dfbf8a9c93cf8a420ee6d70e7f432444c6928993675ca76f0934baf983487bb62de07d4e7e5a3067de
6
+ metadata.gz: a10cb0ce6e038da0eb82f10fdabb49498443c6299811a840ec5ff0820d3840e2041c2bd7c4f558a18a25e17405c14019e14c287aa5a21047532a2933c9d9ec24
7
+ data.tar.gz: 613a9a97038205efc8780348b0f96d0a4b920d5ee9533fbe24b987893b31917c75b8827515b325ebfeca2664de17b4925585f5a8b2ab85b197ec132f651f8253
data/README.md CHANGED
@@ -1,12 +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.
8
+ It has a homepage which displays the latest 6 posts and a paginated blog page used to list out all blog posts.
9
9
 
10
+ **Mere Blog Theme uses Jekyll 4.3 for compatibility with Bulma v1**
10
11
 
11
12
  ## Installation
12
13
 
@@ -30,18 +31,29 @@ Or install it yourself as:
30
31
 
31
32
  $ gem install mere-blog-theme
32
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
+
33
42
  ## Usage
34
43
 
35
- * [Blog Setup](#blog-setup)
36
- * [Posts](#posts)
37
- * [Post Intro](#post-intro)
38
- * [Homepage](#homepage)
39
- * [Authors](#authors)
40
- * [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)
41
51
 
42
52
  ### Blog Setup
43
53
 
44
- 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.
55
+
56
+ **The homepage page needs to be called index.html for the blog pagination**
45
57
 
46
58
  Set the paginator up in the `_config.yml` file with the posts per page and the path to the blog.
47
59
 
@@ -52,7 +64,7 @@ paginate_path: "/page:num"
52
64
 
53
65
  ### Posts
54
66
 
55
- 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.
56
68
 
57
69
  ```yaml
58
70
  layout: post
@@ -61,11 +73,11 @@ image: /img/home.jpg
61
73
  author: C.S. Rhymes
62
74
  ```
63
75
 
64
- Wide images will work best, with a minimum width of 1400px.
76
+ Wide images will work best, with a minimum width of 1400px.
65
77
 
66
78
  #### Post Intro
67
79
 
68
- 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.
69
81
 
70
82
  ```yaml
71
83
  layout: post
@@ -80,7 +92,7 @@ Only the intro is required if you want to display it. If you don't want an image
80
92
 
81
93
  ### Homepage
82
94
 
83
- 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.
84
96
 
85
97
  ```yaml
86
98
  layout: homepage
@@ -92,9 +104,9 @@ hero_height: is-large
92
104
 
93
105
  ### Authors
94
106
 
95
- 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.
96
108
 
97
- **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.
98
110
 
99
111
  ```yaml
100
112
  layout: author
@@ -106,8 +118,8 @@ avatar: /img/avatar.png
106
118
  website: https://www.csrhymes.com
107
119
  ```
108
120
 
109
- 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.
110
-
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
+
111
123
  Next, create an `authors.md` page in the root of your site and set the layout to authors.
112
124
 
113
125
  ```yaml
@@ -116,7 +128,7 @@ title: Authors
116
128
  description: The authors page
117
129
  ```
118
130
 
119
- 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.
120
132
 
121
133
  ```yaml
122
134
  collections:
@@ -124,15 +136,15 @@ collections:
124
136
  output: true
125
137
  ```
126
138
 
127
- 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.
128
140
 
129
- 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.
130
142
 
131
143
  #### Author Social Profiles
132
144
 
133
145
  **New in 0.2.1 **
134
146
 
135
- 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.
136
148
 
137
149
  ```yaml
138
150
  facebook: https://www.facebook.com/
@@ -149,6 +161,19 @@ stack_overflow: https://stackoverflow.com/
149
161
 
150
162
  To enable Google Analytics add `google_analytics: UA-xxxxxxxx` to your `_config.yml` replacing the UA-xxxxxxxx with your Google Analytics property.
151
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
+
152
177
  ## Contributing
153
178
 
154
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.
@@ -165,4 +190,3 @@ To add a custom directory to your theme-gem, please edit the regexp in `mere-blo
165
190
  ## License
166
191
 
167
192
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
168
-
@@ -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 | prepend: site.baseurl }}" class="avatar-link">
6
+ <p class="image is-64x64">
7
+ {% if author.avatar %}
8
+ <img src="{{ author.avatar | prepend: site.baseurl }}" 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 | prepend: site.baseurl }}" 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 | prepend: site.baseurl }}') 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 | prepend: site.baseurl }}" 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,65 @@ 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 | 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">
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 | prepend: site.baseurl }}" class="is-block">
50
+ <p class="title is-5">{{ post.title }}</p>
51
+ </a>
41
52
 
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 %}
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>
58
+ {% comment %}
59
+ <div class="card-footer">
60
+ <a href="{{ post.url | prepend: site.baseurl }}" class="button is-dark card-footer-item">Read more</a>
61
+ </div>
62
+ {% endcomment %}
63
+ </div>
51
64
  </div>
65
+ {% endfor %}
52
66
  </div>
67
+ </div>
53
68
  </div>
54
-
55
-