alembic-jekyll-theme 3.0.9 → 3.0.10
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 +1 -1
- data/_includes/site-favicons.html +7 -4
- data/_layouts/default.html +1 -1
- data/_sass/_flex.scss +0 -0
- data/_sass/_sassline-base.scss +0 -0
- data/_sass/sassline-base/_mixins.scss +0 -0
- data/_sass/sassline-base/_modular-scale.scss +0 -0
- data/_sass/sassline-base/_reset.scss +0 -0
- data/_sass/sassline-base/_typography.scss +0 -0
- data/_sass/sassline-base/_variables.scss +0 -0
- data/assets/{logo.svg → logos/logo.svg} +0 -0
- data/assets/logos/logo@1024px.png +0 -0
- data/assets/logos/logo@120px.png +0 -0
- data/assets/logos/logo@144px.png +0 -0
- data/assets/logos/logo@16px.png +0 -0
- data/assets/logos/logo@180px.png +0 -0
- data/assets/logos/logo@32px.png +0 -0
- data/assets/logos/logo@512px.png +0 -0
- data/assets/logos/logo@96px.png +0 -0
- data/assets/manifest.json +10 -6
- metadata +11 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69c0580d6c8c6caa8af4d803e8eaf400233e0d36
|
|
4
|
+
data.tar.gz: e9ce5c4d1deae8c4f12ed70769a8b8cc7e6c212a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
<link rel="icon" type="image/png" href="{{
|
|
4
|
-
<link rel="
|
|
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 }}">
|
data/_layouts/default.html
CHANGED
|
@@ -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
|
data/_sass/_sassline-base.scss
CHANGED
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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.
|
|
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-
|
|
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
|