jekyll-theme-eva 0.1.6 → 0.1.7
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 +16 -8
- data/_includes/_meta_head.html +1 -1
- data/_plugins/webpack.rb +1 -1
- data/jekyll-theme-eva.gemspec +1 -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: 0437dbb069a5aace75fe3c83e14ccc18809620c8e542bf0d98cfb75f80896538
|
|
4
|
+
data.tar.gz: a1babf6b7b7efb617a3c0275bbfc5b4c64a5c67f66dd030802560498c0886e69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a377c29d56b36ef8fb9b8d481df8b1297e45dc23f09d390a7a7837ddd528730e9f85a4451f25ac014ec73356655f0aeee9e5797021a4d0e728ef94d3e5439aef
|
|
7
|
+
data.tar.gz: cf752c6c06c63245c1bb2e92a1aefdfd7b03ccbd5be76aadc2e60bf412ea036313e4f7d6a920ab1c2ba09f2cbff20688a8dcae7fd48169e9eb4f96854c7cc952
|
data/README.md
CHANGED
|
@@ -11,7 +11,9 @@ To start:
|
|
|
11
11
|
- Create _data/albums and populate it with album data
|
|
12
12
|
|
|
13
13
|
Note:
|
|
14
|
-
uses plugins and Node (Webpack), so not suitable for
|
|
14
|
+
uses plugins and Node (Webpack), so not suitable for GitHub Pages auto-build.
|
|
15
|
+
|
|
16
|
+
See in action: **[Illustrator’s site](https://eval.ee/)** and [its source](https://github.com/strogonoff/eval.ee).
|
|
15
17
|
|
|
16
18
|
## Configuration (in `_config.yml`)
|
|
17
19
|
|
|
@@ -29,8 +31,6 @@ Set these to your liking:
|
|
|
29
31
|
|
|
30
32
|
# Also useful for search engines & social sites. Keep under 255 characters
|
|
31
33
|
description: Vector ink & illustration
|
|
32
|
-
twitter_handle: @your_twitter_username
|
|
33
|
-
|
|
34
34
|
job_title:
|
|
35
35
|
|
|
36
36
|
tagline: artist’s jekyll theme
|
|
@@ -88,15 +88,23 @@ Album symbols should have equal sides (look OK if resized to fit in a square).
|
|
|
88
88
|
|
|
89
89
|
Album data expected in its about.yaml:
|
|
90
90
|
|
|
91
|
-
|
|
92
|
-
priority: 1 # Determines navigation ordering on home page
|
|
93
|
-
|
|
91
|
+
# -- This is shown to the visitor:
|
|
94
92
|
title: Album Title
|
|
95
93
|
description: Briefly about this
|
|
96
94
|
|
|
97
|
-
|
|
98
|
-
#
|
|
95
|
+
# -- This appears in HTML meta,
|
|
96
|
+
# and may be used & made visible by search engines:
|
|
97
|
+
seo:
|
|
98
|
+
description: Briefly about this, possibly other phrasing than above
|
|
99
|
+
|
|
100
|
+
# -- This appears in URLs:
|
|
101
|
+
name: album-name
|
|
102
|
+
|
|
103
|
+
# -- This determines appearance of the album on home page:
|
|
104
|
+
priority: 1 # Ordering relative to other album(s)
|
|
105
|
+
home_nav_icon_style: inset # supported: inset, full-bleed
|
|
99
106
|
|
|
107
|
+
# -- This determines how album page is laid out:
|
|
100
108
|
artwork_list_style: inset multi-column
|
|
101
109
|
# supported: inset multi-column, full-bleed one-column
|
|
102
110
|
|
data/_includes/_meta_head.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{% assign image_url = "favicon@4x.png" | relative_url %}
|
|
2
|
-
{%
|
|
2
|
+
{% capture desc %}{% if page.about.seo.description %}{{ page.about.seo.description }}{% else %}{{ site.description }}{% endif %}{% endcapture %}
|
|
3
3
|
{% capture title %}{{ site.title_name }}{% unless page.about.title %}: {{ site.tagline }}{% endunless %}{% endcapture %}
|
|
4
4
|
|
|
5
5
|
<meta name="twitter:title" content="{{ title }}">
|
data/_plugins/webpack.rb
CHANGED
data/jekyll-theme-eva.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-eva
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Anton Strogonoff
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|