quiet-comic 0.2.2 → 0.2.3
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/_config.yml +1 -0
- data/_layouts/home.html +1 -2
- data/_sass/quiet_comic/components.scss +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d15d54b844d00bc81ef998991dc35b4f75304d93
|
|
4
|
+
data.tar.gz: c10dc0660e27c00995cd3b80f3b5ce63ba31f742
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a74b38edbb38d578c7cce07674925d8eb4c6f19a88c1eecf163380e35905c19822f0e56f451e0a6c13ff0f4ef5565e32dc470ebf2d59902ba09d756fdabe167c
|
|
7
|
+
data.tar.gz: 1208210c17ae133f180152843be7585938e7d9599a49d59e67b8c5385831870e647274e4ba7e1e33f254b5241208ed0cf784e36a942c5d3d45e5c0c26305a89d
|
data/_config.yml
CHANGED
|
@@ -14,6 +14,7 @@ url: # the base hostname and protocol (eg. http://example.com)
|
|
|
14
14
|
baseurl: # the subpath of your site eg. /mycomic
|
|
15
15
|
repository: # Github username/repo-name
|
|
16
16
|
brand_image: "assets/images/placeholder-brand-image.png" # path to brand image in the `assets/images` folder
|
|
17
|
+
main_image: "assets/images/placeholder-main-image.png" # path to main image on home page
|
|
17
18
|
base_image_dir: "assets/images/" # default image directory. Ensure the trailing slash is there
|
|
18
19
|
thumbnail_label: "page_number" # either "title" or "page_number"
|
|
19
20
|
feed_label: "page_number" # either "title" or "page_number"
|
data/_layouts/home.html
CHANGED
|
@@ -4,8 +4,7 @@ layout: "default"
|
|
|
4
4
|
|
|
5
5
|
<div class="Grid Grid--gutters">
|
|
6
6
|
<div class="Grid-cell">
|
|
7
|
-
<div class="Home-img">
|
|
8
|
-
Main image
|
|
7
|
+
<div class="Home-img" style="background-image: url({{ site.main_image }})">
|
|
9
8
|
<a href="{{ "combined_feed.xml" | relative_url }}" class="main-feed-link">
|
|
10
9
|
<img src="{{ site.base_image_dir | append: "feed-icon.svg" | relative_url }}">
|
|
11
10
|
</a>
|