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.
- checksums.yaml +4 -4
- data/README.md +46 -22
- data/_includes/author-media.html +23 -20
- data/_includes/google-analytics.html +6 -3
- data/_includes/head.html +21 -11
- data/_includes/hero.html +12 -7
- data/_includes/navbar.html +19 -19
- data/_includes/pagination.html +41 -21
- data/_includes/post-item.html +18 -15
- data/_includes/social-buttons.html +25 -26
- data/_layouts/author.html +51 -38
- data/_layouts/default.html +21 -19
- data/_layouts/homepage.html +9 -12
- data/_layouts/post.html +29 -28
- data/_sass/_intro.scss +6 -4
- data/_sass/_layout.scss +29 -18
- data/_sass/_main.scss +17 -18
- data/_sass/syntax.scss +14 -6
- data/assets/css/app.scss +1 -1
- data/assets/js/app.js +9 -11
- data/node_modules/.package-lock.json +13 -0
- data/node_modules/bulma/LICENSE +1 -1
- data/node_modules/bulma/README.md +72 -57
- data/node_modules/bulma/bulma.scss +4 -0
- data/node_modules/bulma/css/bulma.css +18892 -8672
- data/node_modules/bulma/css/bulma.css.map +1 -1
- data/node_modules/bulma/css/bulma.min.css +3 -1
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.css +19648 -0
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css +11136 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers.css +11136 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css +21551 -0
- data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
- data/node_modules/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
- data/node_modules/bulma/package.json +42 -62
- data/node_modules/bulma/sass/_index.scss +10 -0
- data/node_modules/bulma/sass/base/_index.scss +6 -0
- data/node_modules/bulma/sass/base/animations.scss +15 -0
- data/node_modules/bulma/sass/base/generic.scss +239 -0
- data/node_modules/bulma/sass/base/minireset.scss +92 -0
- data/node_modules/bulma/sass/base/skeleton.scss +114 -0
- data/node_modules/bulma/sass/components/_index.scss +13 -0
- data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
- data/node_modules/bulma/sass/components/card.scss +162 -0
- data/node_modules/bulma/sass/components/dropdown.scss +188 -0
- data/node_modules/bulma/sass/components/menu.scss +165 -0
- data/node_modules/bulma/sass/components/message.scss +183 -0
- data/node_modules/bulma/sass/components/modal.scss +164 -0
- data/node_modules/bulma/sass/components/navbar.scss +799 -0
- data/node_modules/bulma/sass/components/pagination.scss +379 -0
- data/node_modules/bulma/sass/components/panel.scss +218 -0
- data/node_modules/bulma/sass/components/tabs.scss +273 -0
- data/node_modules/bulma/sass/elements/_index.scss +16 -0
- data/node_modules/bulma/sass/elements/block.scss +6 -0
- data/node_modules/bulma/sass/elements/box.scss +59 -0
- data/node_modules/bulma/sass/elements/button.scss +647 -0
- data/node_modules/bulma/sass/elements/content.scss +289 -0
- data/node_modules/bulma/sass/elements/delete.scss +6 -0
- data/node_modules/bulma/sass/elements/icon.scss +67 -0
- data/node_modules/bulma/sass/elements/image.scss +62 -0
- data/node_modules/bulma/sass/elements/loader.scss +15 -0
- data/node_modules/bulma/sass/elements/notification.scss +105 -0
- data/node_modules/bulma/sass/elements/progress.scss +115 -0
- data/node_modules/bulma/sass/elements/table.scss +261 -0
- data/node_modules/bulma/sass/elements/tag.scss +219 -0
- data/node_modules/bulma/sass/elements/title.scss +128 -0
- data/node_modules/bulma/sass/form/_index.scss +9 -0
- data/node_modules/bulma/sass/form/checkbox-radio.scss +36 -0
- data/node_modules/bulma/sass/form/file.scss +330 -0
- data/node_modules/bulma/sass/form/input-textarea.scss +113 -0
- data/node_modules/bulma/sass/form/select.scss +144 -0
- data/node_modules/bulma/sass/form/shared.scss +176 -0
- data/node_modules/bulma/sass/form/tools.scss +352 -0
- data/node_modules/bulma/sass/grid/_index.scss +5 -0
- data/node_modules/bulma/sass/grid/columns.scss +961 -0
- data/node_modules/bulma/sass/grid/grid.scss +209 -0
- data/node_modules/bulma/sass/helpers/_index.scss +15 -0
- data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
- data/node_modules/bulma/sass/helpers/border.scss +15 -0
- data/node_modules/bulma/sass/helpers/color.scss +344 -0
- data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
- data/node_modules/bulma/sass/helpers/float.scss +28 -0
- data/node_modules/bulma/sass/helpers/gap.scss +24 -0
- data/node_modules/bulma/sass/helpers/other.scss +19 -0
- data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
- data/node_modules/bulma/sass/helpers/position.scss +19 -0
- data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
- data/node_modules/bulma/sass/helpers/typography.scss +168 -0
- data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
- data/node_modules/bulma/sass/layout/_index.scss +9 -0
- data/node_modules/bulma/sass/layout/container.scss +59 -0
- data/node_modules/bulma/sass/layout/footer.scss +23 -0
- data/node_modules/bulma/sass/layout/hero.scss +270 -0
- data/node_modules/bulma/sass/layout/level.scss +107 -0
- data/node_modules/bulma/sass/layout/media.scss +106 -0
- data/node_modules/bulma/sass/layout/section.scss +38 -0
- data/node_modules/bulma/sass/themes/_index.scss +35 -0
- data/node_modules/bulma/sass/themes/dark.scss +56 -0
- data/node_modules/bulma/sass/themes/light.scss +146 -0
- data/node_modules/bulma/sass/themes/setup.scss +174 -0
- data/node_modules/bulma/sass/utilities/_index.scss +7 -0
- data/node_modules/bulma/sass/utilities/controls.scss +85 -0
- data/node_modules/bulma/sass/utilities/css-variables.scss +426 -0
- data/node_modules/bulma/sass/utilities/derived-variables.scss +86 -106
- data/node_modules/bulma/sass/utilities/extends.scss +34 -0
- data/node_modules/bulma/sass/utilities/functions.scss +258 -0
- data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
- data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
- data/node_modules/bulma/versions/bulma-no-dark-mode.scss +20 -0
- data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
- data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
- data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
- data/package-lock.json +14 -6
- data/package.json +1 -1
- metadata +116 -99
- data/node_modules/bulma/CHANGELOG.md +0 -1459
- data/node_modules/bulma/bulma.sass +0 -10
- data/node_modules/bulma/css/bulma-rtl.css +0 -11331
- data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
- data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
- data/node_modules/bulma/sass/base/_all.sass +0 -4
- data/node_modules/bulma/sass/base/generic.sass +0 -142
- data/node_modules/bulma/sass/base/helpers.sass +0 -1
- data/node_modules/bulma/sass/base/minireset.sass +0 -79
- data/node_modules/bulma/sass/components/_all.sass +0 -14
- data/node_modules/bulma/sass/components/breadcrumb.sass +0 -75
- data/node_modules/bulma/sass/components/card.sass +0 -79
- data/node_modules/bulma/sass/components/dropdown.sass +0 -81
- data/node_modules/bulma/sass/components/level.sass +0 -77
- data/node_modules/bulma/sass/components/media.sass +0 -52
- data/node_modules/bulma/sass/components/menu.sass +0 -57
- data/node_modules/bulma/sass/components/message.sass +0 -99
- data/node_modules/bulma/sass/components/modal.sass +0 -113
- data/node_modules/bulma/sass/components/navbar.sass +0 -441
- data/node_modules/bulma/sass/components/pagination.sass +0 -150
- data/node_modules/bulma/sass/components/panel.sass +0 -119
- data/node_modules/bulma/sass/components/tabs.sass +0 -174
- data/node_modules/bulma/sass/elements/_all.sass +0 -15
- data/node_modules/bulma/sass/elements/box.sass +0 -24
- data/node_modules/bulma/sass/elements/button.sass +0 -323
- data/node_modules/bulma/sass/elements/container.sass +0 -24
- data/node_modules/bulma/sass/elements/content.sass +0 -155
- data/node_modules/bulma/sass/elements/form.sass +0 -1
- data/node_modules/bulma/sass/elements/icon.sass +0 -21
- data/node_modules/bulma/sass/elements/image.sass +0 -71
- data/node_modules/bulma/sass/elements/notification.sass +0 -48
- data/node_modules/bulma/sass/elements/other.sass +0 -39
- data/node_modules/bulma/sass/elements/progress.sass +0 -67
- data/node_modules/bulma/sass/elements/table.sass +0 -129
- data/node_modules/bulma/sass/elements/tag.sass +0 -136
- data/node_modules/bulma/sass/elements/title.sass +0 -70
- data/node_modules/bulma/sass/form/_all.sass +0 -8
- data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -21
- data/node_modules/bulma/sass/form/file.sass +0 -180
- data/node_modules/bulma/sass/form/input-textarea.sass +0 -64
- data/node_modules/bulma/sass/form/select.sass +0 -85
- data/node_modules/bulma/sass/form/shared.sass +0 -55
- data/node_modules/bulma/sass/form/tools.sass +0 -213
- data/node_modules/bulma/sass/grid/_all.sass +0 -4
- data/node_modules/bulma/sass/grid/columns.sass +0 -504
- data/node_modules/bulma/sass/grid/tiles.sass +0 -34
- data/node_modules/bulma/sass/helpers/_all.sass +0 -10
- data/node_modules/bulma/sass/helpers/color.sass +0 -37
- data/node_modules/bulma/sass/helpers/float.sass +0 -8
- data/node_modules/bulma/sass/helpers/other.sass +0 -8
- data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
- data/node_modules/bulma/sass/helpers/position.sass +0 -5
- data/node_modules/bulma/sass/helpers/spacing.sass +0 -28
- data/node_modules/bulma/sass/helpers/typography.sass +0 -98
- data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
- data/node_modules/bulma/sass/layout/_all.sass +0 -5
- data/node_modules/bulma/sass/layout/footer.sass +0 -9
- data/node_modules/bulma/sass/layout/hero.sass +0 -145
- data/node_modules/bulma/sass/layout/section.sass +0 -13
- data/node_modules/bulma/sass/utilities/_all.sass +0 -8
- data/node_modules/bulma/sass/utilities/animations.sass +0 -5
- data/node_modules/bulma/sass/utilities/controls.sass +0 -50
- data/node_modules/bulma/sass/utilities/functions.sass +0 -115
- data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -78
- 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71f70671d8a376fef723f1569a639db6d471bfc360a79d667a3917c4c7b7d556
|
4
|
+
data.tar.gz: bbfaceda33ef1d4ed11f1c35549e58a384ca2c01a2e0277333ffbcc3a4d5792c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
[](https://badge.fury.io/rb/mere-blog-theme)
|
3
|
+
[](https://badge.fury.io/rb/mere-blog-theme)
|
4
4
|

|
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
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
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
|
-
|
data/_includes/author-media.html
CHANGED
@@ -1,24 +1,27 @@
|
|
1
|
-
<div class="
|
1
|
+
<div class="card">
|
2
|
+
<div class="card-content">
|
2
3
|
<div class="media">
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
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(){
|
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
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
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
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
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
|
-
</
|
12
|
+
</div>
|
13
|
+
</section>
|
data/_includes/navbar.html
CHANGED
@@ -1,21 +1,21 @@
|
|
1
1
|
<div class="navbar is-white">
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
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
|
-
|
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>
|
data/_includes/pagination.html
CHANGED
@@ -1,23 +1,43 @@
|
|
1
1
|
<nav class="pagination is-centered">
|
2
|
-
|
3
|
-
<a href="{{ site.baseurl }}{{ paginator.previous_page_path }}" class="pagination-previous is-info"
|
4
|
-
|
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
|
-
|
7
|
-
|
8
|
-
<a href="{{ site.baseurl }}{{ paginator.next_page_path }}" class="pagination-next is-info"
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
<
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
<li
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
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>
|
data/_includes/post-item.html
CHANGED
@@ -1,17 +1,20 @@
|
|
1
1
|
<div class="card">
|
2
|
-
|
3
|
-
|
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
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
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
|
-
|
2
|
+
{% if page.facebook %}
|
3
3
|
<a href="{{ page.facebook }}" class="button is-dark" target="_blank">
|
4
|
-
|
4
|
+
<i class="fab fa-facebook-f"></i>
|
5
5
|
</a>
|
6
|
-
|
6
|
+
{% endif %}
|
7
7
|
|
8
|
-
|
8
|
+
{% if page.twitter %}
|
9
9
|
<a href="{{ page.twitter }}" class="button is-dark" target="_blank">
|
10
|
-
|
10
|
+
<i class="fab fa-twitter"></i>
|
11
11
|
</a>
|
12
|
-
|
12
|
+
{% endif %}
|
13
13
|
|
14
|
-
|
14
|
+
{% if page.github %}
|
15
15
|
<a href="{{ page.github }}" class="button is-dark" target="_blank">
|
16
|
-
|
16
|
+
<i class="fab fa-github"></i>
|
17
17
|
</a>
|
18
|
-
|
18
|
+
{% endif %}
|
19
19
|
|
20
|
-
|
20
|
+
{% if page.gitlab %}
|
21
21
|
<a href="{{ page.gitlab }}" class="button is-dark" target="_blank">
|
22
|
-
|
22
|
+
<i class="fab fa-gitlab"></i>
|
23
23
|
</a>
|
24
|
-
|
24
|
+
{% endif %}
|
25
25
|
|
26
|
-
|
26
|
+
{% if page.instagram %}
|
27
27
|
<a href="{{ page.instagram }}" class="button is-dark" target="_blank">
|
28
|
-
|
28
|
+
<i class="fab fa-instagram"></i>
|
29
29
|
</a>
|
30
|
-
|
30
|
+
{% endif %}
|
31
31
|
|
32
|
-
|
32
|
+
{% if page.linkedin %}
|
33
33
|
<a href="{{ page.linkedin }}" class="button is-dark" target="_blank">
|
34
|
-
|
34
|
+
<i class="fab fa-linkedin-in"></i>
|
35
35
|
</a>
|
36
|
-
|
36
|
+
{% endif %}
|
37
37
|
|
38
|
-
|
38
|
+
{% if page.medium %}
|
39
39
|
<a href="{{ page.medium }}" class="button is-dark" target="_blank">
|
40
|
-
|
40
|
+
<i class="fab fa-medium-m"></i>
|
41
41
|
</a>
|
42
|
-
|
42
|
+
{% endif %}
|
43
43
|
|
44
|
-
|
44
|
+
{% if page.stack_overflow %}
|
45
45
|
<a href="{{ page.stack_overflow }}" class="button is-dark" target="_blank">
|
46
|
-
|
46
|
+
<i class="fab fa-stack-overflow"></i>
|
47
47
|
</a>
|
48
|
-
|
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
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
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
|
-
|
23
|
-
<
|
24
|
-
|
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
|
-
|
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
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
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
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
</
|
50
|
-
|
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
|
-
|