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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f48a27635229fbdeade947564a239e3f2d0005cb2224bf29f03d422fad4dfb5
4
- data.tar.gz: 681bcea3f796b0dc5a76e6e8eea804cc2c4acf8538c07b12424fdd9187282c60
3
+ metadata.gz: 0437dbb069a5aace75fe3c83e14ccc18809620c8e542bf0d98cfb75f80896538
4
+ data.tar.gz: a1babf6b7b7efb617a3c0275bbfc5b4c64a5c67f66dd030802560498c0886e69
5
5
  SHA512:
6
- metadata.gz: cdeecc43fa77e3ad834540c9203f88d00b3db1a28f22a383e99bb78d2084ab0392684bba0c5689b218bffbc1ea844c37585cab035eb4228674f81db8a3622695
7
- data.tar.gz: c0d1821309bbf148b546a0671e8c950bffa77f5ea40059f1c8ce34b274bd33e5b32461964c409729349fe514fe99d88ff0419ec478c14ea8c854aad017671c03
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 Github pages auto-build.
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
- name: album-name
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
- home_nav_icon_style: inset
98
- # supported: inset, full-bleed
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
 
@@ -1,5 +1,5 @@
1
1
  {% assign image_url = "favicon@4x.png" | relative_url %}
2
- {% assign desc = site.description %}
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
@@ -3,7 +3,7 @@ Jekyll::Hooks.register :site, :after_init do |site|
3
3
  p "-- Eva: Initializing Node package…"
4
4
 
5
5
  system("npm init --yes")
6
- system("npm install webpack webpack-cli jquery")
6
+ system("npm install webpack-cli webpack jquery")
7
7
  end
8
8
 
9
9
  if site.theme
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "jekyll-theme-eva"
5
- spec.version = "0.1.6"
5
+ spec.version = "0.1.7"
6
6
  spec.authors = ["Anton Strogonoff"]
7
7
  spec.email = ["anton@strogonoff.name"]
8
8
 
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.6
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-05 00:00:00.000000000 Z
11
+ date: 2018-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll