alembic-jekyll-theme 3.0.9 → 3.0.10

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
  SHA1:
3
- metadata.gz: c0018bc4c48417d64068a05a7dc6e64f33727c02
4
- data.tar.gz: 45977df8ec5657a3c43c10493d9ee4371f746878
3
+ metadata.gz: 69c0580d6c8c6caa8af4d803e8eaf400233e0d36
4
+ data.tar.gz: e9ce5c4d1deae8c4f12ed70769a8b8cc7e6c212a
5
5
  SHA512:
6
- metadata.gz: c6166d6ea4e916426ed9290c4ecba0df980ba9dcca0338022b9244af6c7dc650d4c5c23519fbd9d20aa38262efdd7d251a54f18351ec1962e1d77cd11a9dc9c9
7
- data.tar.gz: 034aa9558f1f323d2118327fa78f6be58436e0786df0df185b90b3d64e9c2ab697997957811451b3529912679d3bececa0e89f892ce6011376ca778580e82637
6
+ metadata.gz: 041cc9b6daec0b34bf9b8332c9a1912e9f41d425438b81d9b199f73abd174cfc7d5e4dfe88cdb7671b526047e412a046e8a1360d5bd8a944aaf870dd77c7b185
7
+ data.tar.gz: ef0fc107e20d83468e07f8231621c33e5ba1db7716cac9f5c610afd20f55f4d4a0dd0296c421b715fd3183fe4f0c2c06b4a8ff1ecf7bd73a5e5bc5ceb1f309db
data/README.md CHANGED
@@ -121,7 +121,7 @@ There are a number of optional settings for you to configure. Use the example [`
121
121
 
122
122
  ### Site settings
123
123
 
124
- You'll need to change the `description`, `title` and `url` to match with the project. You'll also need to replace the `/assets/logo.svg` and `/assets/default-social-image.png` with the project logo and default social image. Setting the site language can be done with `lang`, the theme will default to `en-US`. The `email` needs to be changed to the email you want to receive contact form enquires with. The `disqus` value can be changed to your project username on [Disqus](https://disqus.com), remove this from the `/_config.yml` file if you don't want comments enabled. Look for the `Site settings` comment within the `/_config.yml` file. The `repo` setting is optional, for now, and can be removed entirely, if you wish.
124
+ You'll need to change the `description`, `title` and `url` to match with the project. You'll also need to replace the logos, default social and default offline images in the `/assets/` directory with your own graphics. Setting the site language can be done with `lang`, the theme will default to `en-US`. The `email` needs to be changed to the email you want to receive contact form enquires with. The `disqus` value can be changed to your project username on [Disqus](https://disqus.com), remove this from the `/_config.yml` file if you don't want comments enabled. Look for the `Site settings` comment within the `/_config.yml` file. The `repo` setting is optional, for now, and can be removed entirely, if you wish.
125
125
 
126
126
  Google Analytics can be enabled via the site configuration too. Add your tracking ID to the `/_config.yml` file in the following method: `google_analytics: 'UA-XXXXXXXX-1'`
127
127
 
@@ -1,4 +1,7 @@
1
- <link rel="icon" type="image/png" href="{{ site.avatarurl }}?s=16" sizes="16x16">
2
- <link rel="icon" type="image/png" href="{{ site.avatarurl }}?s=32" sizes="32x32">
3
- <link rel="icon" type="image/png" href="{{ site.avatarurl }}?s=96" sizes="96x96">
4
- <link rel="shortcut icon" href="{{ site.avatarurl }}">
1
+ {% if site.favicons %}
2
+ {% for icon in site.favicons %}
3
+ <link rel="icon" type="image/png" href="{{ icon[1] }}" sizes="{{ icon[0] }}x{{ icon[0] }}">
4
+ <link rel="apple-touch-icon" sizes="{{ icon[0] }}x{{ icon[0] }}" href="{{ icon[1] }}">
5
+ {% endfor %}
6
+ {% endif %}
7
+ <link rel="shortcut icon" href="{{ site.avatarurl + '?s=32' | default: site.logo }}">
@@ -30,7 +30,7 @@
30
30
  <link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
31
31
  {% endif %}
32
32
 
33
- {% if site.avatarurl %}{% include site-favicons.html %}{% endif %}
33
+ {% if site.favicons or site.avatarurl %}{% include site-favicons.html %}{% endif %}
34
34
 
35
35
  {% if site.google_analytics %}{% include site-analytics.html %}{% endif %}
36
36
 
data/_sass/_flex.scss CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/assets/manifest.json CHANGED
@@ -8,12 +8,16 @@ layout: none
8
8
  "short_name": "{{ site.title | replace: ' ', '' }}",
9
9
  "theme_color": "{{ site.manifest.theme_color | default: '#24292e' }}",
10
10
  "background_color": "{{ site.manifest.background_color | default: '#ffffff' }}",
11
- "icons": [
12
- {
13
- "src": "{{ site.logo }}",
14
- "sizes": "512x512"
15
- }
16
- ],
11
+ {% if site.favicons %}
12
+ "icons": [
13
+ {% for icon in site.favicons %}
14
+ {
15
+ "src": "{{ icon[1] }}",
16
+ "sizes": "{{ icon[0] }}x{{ icon[0] }}"
17
+ }{% if forloop.last != true %},{% endif %}
18
+ {% endfor %}
19
+ ],
20
+ {%- endif -%}
17
21
  "start_url": "/",
18
22
  "display": "standalone"
19
23
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alembic-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.9
4
+ version: 3.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Darnes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-13 00:00:00.000000000 Z
11
+ date: 2019-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -239,7 +239,15 @@ files:
239
239
  - _sass/sassline-base/_variables.scss
240
240
  - assets/default-offline-image.png
241
241
  - assets/default-social-image.png
242
- - assets/logo.svg
242
+ - assets/logos/logo.svg
243
+ - assets/logos/logo@1024px.png
244
+ - assets/logos/logo@120px.png
245
+ - assets/logos/logo@144px.png
246
+ - assets/logos/logo@16px.png
247
+ - assets/logos/logo@180px.png
248
+ - assets/logos/logo@32px.png
249
+ - assets/logos/logo@512px.png
250
+ - assets/logos/logo@96px.png
243
251
  - assets/manifest.json
244
252
  - assets/scripts/fetch.js
245
253
  - assets/scripts/sw.js