bulma-clean-theme 0.10.2 → 0.10.3
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 +4 -0
- data/_includes/head.html +1 -0
- data/_layouts/default.html +6 -1
- 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: ce9a1893c7da6e82e13b4800349942e72fa60e29356e57f82499019684be67df
|
|
4
|
+
data.tar.gz: 7dfebfe275ed2a765ff658e92f8ab7ab0883e3c8f5c602a3f2498e63eb428e52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f909292e16ece5d094490ca25e60b8525acf4e7be8919f95c9a1de9fcf31a5c6c84b7730426e0f3aa2e5dc61e6c01ffa6fe33820d0ecdbb94b35c087ddfe7bbd
|
|
7
|
+
data.tar.gz: ee6d0654985571fff1c2c128deed0871dfcac5ca9948dbceb98cd3a030787b91289348315560b109ebd2d3d8463a4bb987923b500606aeadc78060af67af3fcf
|
data/README.md
CHANGED
|
@@ -148,6 +148,10 @@ $primary: #333333;
|
|
|
148
148
|
|
|
149
149
|
You can overwrite any of the [Bulma initial variables](http://versions.bulma.io/0.7.0/documentation/overview/variables/) in this way as long as they are declared before the `@import "main"'`
|
|
150
150
|
|
|
151
|
+
#### Theme Color Meta Tag
|
|
152
|
+
|
|
153
|
+
If you want to update the theme color meta tag then set the `theme_color: '#333333'` in your `_config.yml` file.
|
|
154
|
+
|
|
151
155
|
### Sidebar Visibility
|
|
152
156
|
|
|
153
157
|
**New in 0.2**
|
data/_includes/head.html
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<head>
|
|
2
2
|
<meta charset="utf-8">
|
|
3
3
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
4
|
+
<meta name="theme-color" content={{ site.theme_color | default: '#ffffff' }}>
|
|
4
5
|
<title>{{ page.title }} - {{ site.title }}</title>
|
|
5
6
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/app.css">
|
|
6
7
|
<link rel="shortcut icon" type="image/png"
|
data/_layouts/default.html
CHANGED
|
@@ -17,7 +17,12 @@
|
|
|
17
17
|
<section class="section">
|
|
18
18
|
<div class="container">
|
|
19
19
|
<div class="columns">
|
|
20
|
-
{% if page.
|
|
20
|
+
{% if page.menubar_toc %}
|
|
21
|
+
<div class="column is-4-desktop is-4-tablet">
|
|
22
|
+
{% assign contentsTitle = page.toc_title | default: 'Contents' %}
|
|
23
|
+
{% include toc.html html=content class='menu-list' h_min=2 h_max=3 contents_title=contentsTitle %}
|
|
24
|
+
</div>
|
|
25
|
+
{% elsif page.menubar %}
|
|
21
26
|
<div class="column is-4-desktop is-4-tablet">
|
|
22
27
|
{% include menubar.html %}
|
|
23
28
|
</div>
|
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- chrisrhymes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-11-
|
|
11
|
+
date: 2020-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|