harms-columns-front-page 3.2.1 → 3.2.2
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 +12 -2
- data/_includes/footer.html +1 -1
- data/_includes/header.html +5 -0
- data/_sass/_base.sass +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e72fb7c2597560f9d0147c4aa77f4a57f3a5619
|
|
4
|
+
data.tar.gz: 30645340c35adcff3c277482caf5328d889728d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45f10523551f1c6fe5c57c63feb56ee6c05642047ce6be89bbb7e908e06b9319e565b65fc93444477ef0b294d7ab88c0bebb2498d3cbaca01dada3944782bedc
|
|
7
|
+
data.tar.gz: a7f30e04ac3ba5791c623385d56f88eaa5fadcad0655da75394335107f09b3b0f5300af1ace17d9e2799c5aff3c08a80fef0bee93643bb97b87e2f1fabf4a609
|
data/README.md
CHANGED
|
@@ -102,10 +102,10 @@ gem "harms-columns-front-page"
|
|
|
102
102
|
theme: harms-columns-front-page
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
**Step 4 (OPTIONAL):** Then find the section that starts with `gems:` and add the following entries to the list:
|
|
105
|
+
**Step 4 (OPTIONAL):** Then find the section that starts with `plugins:` (if you're using an older version of jekyll it might be called `gems:`) and add the following entries to the list:
|
|
106
106
|
|
|
107
107
|
```yaml
|
|
108
|
-
|
|
108
|
+
plugins:
|
|
109
109
|
- jekyll-autoprefixer
|
|
110
110
|
- jekyll-minifier
|
|
111
111
|
```
|
|
@@ -362,6 +362,16 @@ favicon: path/to/your/favicon/here.png
|
|
|
362
362
|
|
|
363
363
|
<br>
|
|
364
364
|
|
|
365
|
+
#### _Custom Head HTML_
|
|
366
|
+
|
|
367
|
+
Here you can specify custom html code that goes into the head-section of your website such as meta data, custom favicons or a manifest file.
|
|
368
|
+
|
|
369
|
+
```yaml
|
|
370
|
+
custom-head-html: <meta name="author" content="Michael Harms">
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
<br>
|
|
374
|
+
|
|
365
375
|
#### _Subtitle_
|
|
366
376
|
|
|
367
377
|
The subtitle will appear in your header under the site title.
|
data/_includes/footer.html
CHANGED
data/_includes/header.html
CHANGED
|
@@ -31,6 +31,11 @@
|
|
|
31
31
|
<!-- The site's favicon -->
|
|
32
32
|
<link rel="icon" type="image/png" href="{{ site.favicon }}" sizes="32x32">
|
|
33
33
|
|
|
34
|
+
<!-- Place for custom html header code such as meta data, custom favicons or a manifest file -->
|
|
35
|
+
{% if site.custom-head-html %}
|
|
36
|
+
{{ site.custom-head-html }}
|
|
37
|
+
{% endif %}
|
|
38
|
+
|
|
34
39
|
<!-- CSS that overrides the defaults, when the theme user selected custom colors in the site's global configuration -->
|
|
35
40
|
{% include custom-styles.html %}
|
|
36
41
|
|
data/_sass/_base.sass
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: harms-columns-front-page
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Harms
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|