jekyll-theme-eva 0.1.1 → 0.1.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 +13 -10
- data/_layouts/home.html +1 -1
- data/jekyll-theme-eva.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 449e894c55978de586a6a42649ff4d293170a87695151c8a0fddb6c1c8c44b58
|
4
|
+
data.tar.gz: 46694a347aa4a8228da3ae2642ecc62d9e99d2ca4ce75275f70c90cb5b140aa5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
-
|
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
|
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
|
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
|
-
-
|
87
|
-
-
|
88
|
-
|
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)
|
data/_layouts/home.html
CHANGED
@@ -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"
|
data/jekyll-theme-eva.gemspec
CHANGED