bulma-clean-theme 0.10.4 → 0.10.5
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 +3 -3
- data/_includes/head.html +0 -1
- data/_layouts/default.html +7 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61ce44ce708ac22899498a1a55761fe28063462f30616cb982794fa32f6a5eb3
|
|
4
|
+
data.tar.gz: 39ee6467f173ed65617802584e8a3c88187ce64fe38ddbc955c11157b7161bac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57aeb00974e6d06908ccddba1f99634aec698c3ed5c071d3bdc7458eaad64e55738a2eca025a952a478a70fca64ebfe058fa1de03dfbc366f5bcb71e13613ccb
|
|
7
|
+
data.tar.gz: db1e0da5a6595a08c6829ae9deacf778866574853fdfeb85a8263c279e1cf9832016243a58bb1be04f6551f1c03fe80c4dcaada22edcfcaebd2d04b1da07b087
|
data/README.md
CHANGED
|
@@ -139,7 +139,7 @@ For the current page to have an active class, ensure the `link:` format matches
|
|
|
139
139
|
|
|
140
140
|
#### Fixed Navbar
|
|
141
141
|
|
|
142
|
-
To have a fixed navbar, you can set `fixed_navbar: top`
|
|
142
|
+
To have a fixed navbar, you can set `fixed_navbar: top` or `fixed_navbar: bottom` respectively in your
|
|
143
143
|
`_config.yml`.
|
|
144
144
|
|
|
145
145
|
### Colours and Styles
|
|
@@ -394,7 +394,7 @@ To add reviews to your product page, create a `reviews` directory in the `_data`
|
|
|
394
394
|
- name: Mr E Xample
|
|
395
395
|
rating: 4
|
|
396
396
|
title: Great product, highly recommended
|
|
397
|
-
date: 01
|
|
397
|
+
date: 2019-01-01
|
|
398
398
|
avatar: https://bulma.io/images/placeholders/128x128.png
|
|
399
399
|
description: >
|
|
400
400
|
The product worked really well. I would recommend this to most people to use. Delivery was quick and reasonable.
|
|
@@ -402,7 +402,7 @@ To add reviews to your product page, create a `reviews` directory in the `_data`
|
|
|
402
402
|
- name: Mrs R E View
|
|
403
403
|
rating: 5
|
|
404
404
|
title: Nice, really liked this
|
|
405
|
-
date: 02
|
|
405
|
+
date: 2019-02-02
|
|
406
406
|
description: >
|
|
407
407
|
The product worked exactly as described.
|
|
408
408
|
```
|
data/_includes/head.html
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
<meta charset="utf-8">
|
|
3
3
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
4
4
|
<meta name="theme-color" content={{ site.theme_color | default: '#ffffff' }}>
|
|
5
|
-
<title>{{ page.title }} - {{ site.title }}</title>
|
|
6
5
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/app.css">
|
|
7
6
|
<link rel="shortcut icon" type="image/png"
|
|
8
7
|
{% if site.favicon %} href="{{ site.favicon | relative_url }}" {% else %} href="{{ site.baseurl }}/favicon.png" {% endif %}
|
data/_layouts/default.html
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
{% if page.menubar
|
|
1
|
+
{% if page.menubar or page.menubar_toc %}
|
|
2
|
+
{% assign has_left_sidebar = true %}
|
|
3
|
+
{% endif %}
|
|
4
|
+
|
|
5
|
+
{% if page.show_sidebar and has_left_sidebar %}
|
|
2
6
|
{% assign content_width = 'is-4' %}
|
|
3
|
-
{% elsif page.
|
|
7
|
+
{% elsif page.show_sidebar or has_left_sidebar %}
|
|
4
8
|
{% assign content_width = 'is-8' %}
|
|
5
9
|
{% else %}
|
|
6
10
|
{% assign content_width = 'is-12' %}
|
|
7
11
|
{% endif %}
|
|
12
|
+
|
|
8
13
|
<!DOCTYPE html>
|
|
9
14
|
<html {% if site.fixed_navbar %} class="has-navbar-fixed-{{ site.fixed_navbar }}" {% endif %}>
|
|
10
15
|
{% include head.html %}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bulma-clean-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- chrisrhymes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|