mere-blog-theme 1.0 → 1.0.1
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/_includes/author-media.html +3 -3
- data/_includes/hero.html +1 -1
- data/_includes/post-item.html +1 -1
- data/_layouts/author.html +6 -7
- data/_layouts/post.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b380848912dbdc704ac35b4e8fa9b69afee97da370bc2702d813e3ee0d522ea
|
4
|
+
data.tar.gz: 69b06f5b7b14ad5102b2c1bf198a141f5707b9263191565feb62121564d8573a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b2869c724ecb31fdbec0e5e92f57842d9c66976505ef8332bc54cb6af74c70f99c45790e573456f03a9bac4d8179a8c2b697f773c969ba4f34a4c7baf13975f
|
7
|
+
data.tar.gz: 3145f13447e010b656055bc4d6d1f6990f871249075f64c78722ce151135398b4559f1ccb0760660bb7f5c0e4279b086d6a4753629e13b19e00719ec383156a2
|
data/_includes/author-media.html
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
<div class="card-content">
|
3
3
|
<div class="media">
|
4
4
|
<figure class="media-left">
|
5
|
-
<a href="{{ author.url |
|
5
|
+
<a href="{{ author.url | relative_url }}" class="avatar-link">
|
6
6
|
<p class="image is-64x64">
|
7
7
|
{% if author.avatar %}
|
8
|
-
<img src="{{ author.avatar |
|
8
|
+
<img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}">
|
9
9
|
{% else %}
|
10
10
|
<i class="fas fa-user fa-4x"></i>
|
11
11
|
{% endif %}
|
@@ -13,7 +13,7 @@
|
|
13
13
|
</a>
|
14
14
|
</figure>
|
15
15
|
<div class="media-content">
|
16
|
-
<a href="{{ author.url |
|
16
|
+
<a href="{{ author.url | relative_url }}" class="is-block">
|
17
17
|
<p class="title is-5">{{ author.name }}</p>
|
18
18
|
</a>
|
19
19
|
|
data/_includes/hero.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<section
|
2
2
|
class="hero {% if page.hero_height %} {{ page.hero_height }} {% else %} is-medium {% endif %} is-bold is-dark"
|
3
3
|
{% if page.image %}
|
4
|
-
style="background: url('{{ page.image |
|
4
|
+
style="background: url('{{ page.image | relative_url }}') no-repeat center center; background-size: cover;"
|
5
5
|
{% endif %}
|
6
6
|
>
|
7
7
|
<div class="hero-body">
|
data/_includes/post-item.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<div class="card">
|
2
2
|
<div class="card-image">
|
3
|
-
<img src="{{ post.image |
|
3
|
+
<img src="{{ post.image | relative_url }}" alt="{{ post.title }}" width="100%">
|
4
4
|
</div>
|
5
5
|
<div class="card-content">
|
6
6
|
<div class="content">
|
data/_layouts/author.html
CHANGED
@@ -7,7 +7,7 @@ layout: default
|
|
7
7
|
<div class="column is-3">
|
8
8
|
{% if page.avatar %}
|
9
9
|
<p class="image is-square">
|
10
|
-
<img src="{{ page.avatar |
|
10
|
+
<img src="{{ page.avatar | relative_url }}" alt="{{ page.name }}">
|
11
11
|
</p>
|
12
12
|
{% else %}
|
13
13
|
<div class="has-text-centered">
|
@@ -46,7 +46,7 @@ layout: default
|
|
46
46
|
<div class="column is-12">
|
47
47
|
<div class="card">
|
48
48
|
<div class="card-content">
|
49
|
-
<a href="{{ post.url |
|
49
|
+
<a href="{{ post.url | relative_url }}" class="is-block">
|
50
50
|
<p class="title is-5">{{ post.title }}</p>
|
51
51
|
</a>
|
52
52
|
|
@@ -55,11 +55,10 @@ layout: default
|
|
55
55
|
<p>{{ post.excerpt | strip_html | strip_newlines | truncate: 100 }}</p>
|
56
56
|
</div>
|
57
57
|
</div>
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
{% endcomment %}
|
58
|
+
|
59
|
+
<div class="card-footer">
|
60
|
+
<a href="{{ post.url | relative_url }}" class="button is-dark card-footer-item">Read more</a>
|
61
|
+
</div>
|
63
62
|
</div>
|
64
63
|
</div>
|
65
64
|
{% endfor %}
|
data/_layouts/post.html
CHANGED
@@ -7,7 +7,7 @@ layout: default
|
|
7
7
|
{% if page.intro_image %}
|
8
8
|
<div class="column is-8-desktop is-6-tablet">
|
9
9
|
<figure class="image {% if page.intro_image_ratio %} {{ page.intro_image_ratio }} {% else %} is-16by9 {% endif %}">
|
10
|
-
<img src="{{ page.intro_image |
|
10
|
+
<img src="{{ page.intro_image | relative_url }}" alt="{{ page.title }}">
|
11
11
|
</figure>
|
12
12
|
</div>
|
13
13
|
{% endif %}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mere-blog-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- chrisrhymes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|