jekyll-theme-eva 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 449c86e18af4ad98692e90503f87c569ac9963d9682c6579674f5ece62e44ae3
4
- data.tar.gz: 66648aef395cdf579885ea7f916b905929cd0c6ed70738a7727eaa27edbf0022
3
+ metadata.gz: 449e894c55978de586a6a42649ff4d293170a87695151c8a0fddb6c1c8c44b58
4
+ data.tar.gz: 46694a347aa4a8228da3ae2642ecc62d9e99d2ca4ce75275f70c90cb5b140aa5
5
5
  SHA512:
6
- metadata.gz: dd37b06098385a33a12a27735eaa9e8f88e8691550abb01fb282dd1eb33628ab1a91b8074868f8aeb97f8edfc407d34148e7259747d9a926b4ad83732ee29cb7
7
- data.tar.gz: 6c5d5937e5ebc742918a889f88f7d7173cb2f6588054242c765dfda48e2ea5e3c0f1cb8bdefb6d51dc46de2c6f8883e4148ef04fc894f4a9428f7712f84362e5
6
+ metadata.gz: c43b12462ad98e6bbde6c7d5185a173ef0cdb8f7fda23dfc5e7f04b6b268b1094c2c2108cb2153f93b30cc6e25d831d52ede6a7877cd616fe02a4779394c96e6
7
+ data.tar.gz: d0e42a8ace55a559c5b27e7882148d13a934d341cab440a3c949d586d5550342ceda4c1bd44b9f8da3a4de33e0c1cd42d76e4710eafe70d6fd18539fe57e687e
data/README.md CHANGED
@@ -4,10 +4,15 @@ To start:
4
4
 
5
5
  - Add "jekyll-theme-eva" gem to your Gemfile
6
6
  - Specify "jekyll-theme-eva" theme in your site configuration
7
- - Copy theme’s _plugins directory into your site base directory
7
+ - Manual steps:
8
+ - drop theme’s _plugins directory into your site base directory
9
+ - drop theme’s _includes/_responsive_image.html into your site’s _includes
8
10
  - Add theme configuration to _config.yml
9
11
  - Create _data/albums and populate it with album data
10
12
 
13
+ Note:
14
+ uses plugins and Node (Webpack), so not suitable for Github pages auto-build.
15
+
11
16
  ## Configuration (in `_config.yml`)
12
17
 
13
18
  Set these to your liking:
@@ -65,7 +70,7 @@ Add these as is:
65
70
 
66
71
  Album symbols should have equal sides (look OK if resized to fit in a square).
67
72
 
68
- Album data to put in its about.yml:
73
+ Album data expected in its about.yaml:
69
74
 
70
75
  name: album-name
71
76
  priority: 1 # Determines navigation ordering on home page
@@ -79,13 +84,11 @@ Album data to put in its about.yml:
79
84
  artwork_list_style: inset multi-column
80
85
  # supported: inset multi-column, full-bleed one-column
81
86
 
82
- Artwork data to put in its about.yml is name and title, in same YAML format.
87
+ Artwork data expected in its about.yaml is just `name` and `title`, in same YAML format.
83
88
 
84
- Customization:
89
+ ## Customization
85
90
 
86
- - Create _includes/head_symbol_home.html for custom logo/mascot header
87
- - Create assets/css/style.scss with variables and custom styling rules,
88
- place variables before `@import 'jekyll-theme-eva';` and custom rules after
89
-
90
- Note:
91
- uses plugins and Node (Webpack), so not suitable for Github pages auto-build.
91
+ - Place favicon.svg, favicon.png (64x64px), favicon@4x.png into your site root
92
+ - Place custom logo/mascot code into _includes/head_symbol_home.html
93
+ - Create assets/css/style.scss with variables and custom styling rules.
94
+ (Place variables before `@import 'jekyll-theme-eva';`, custom rules after)
@@ -24,7 +24,7 @@ structured_data_include: json_ld_person.html
24
24
  {% for album in albums %}
25
25
  <a class="{{ album.about.name }} nav-item
26
26
  {{ album.about.home_nav_icon_style }}"
27
- href="{{ album.url }}"
27
+ href="{{ album.url }}/"
28
28
  title="{{ album.about.title }}">
29
29
  <div class="backdrop" role="presentation"></div>
30
30
  <img class="icon"
@@ -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.1"
5
+ spec.version = "0.1.2"
6
6
  spec.authors = ["Anton Strogonoff"]
7
7
  spec.email = ["anton@strogonoff.name"]
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-eva
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Strogonoff