awesome-jekyll-theme 1.3.0 → 1.3.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/post_card.html +3 -1
- data/_layouts/post.html +2 -0
- 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: c5a6b01e663b91de8cb5da73c14b00a1a7d2ad1a21603860bbeb3cd5ab187d16
|
4
|
+
data.tar.gz: 4072e38ee52671391e9a5bc4f570c5222cf37313d3041e966dde7398869e7dfe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c8c815ebaa337bee309ef2de4bf77b980ba02afdb8d36e617d35df2fa5fce1314dda00940f75f6bec46209b792116820a8e3d34b98b62b2ad679f6a5b1522a9
|
7
|
+
data.tar.gz: 162853891385349bb9efcd1cde9c1e45ed05f673d19ce4fa6228297ab8bd68d292fb96ba5161e85db50e8c6447ee6b76658ca9411b19bea32f340b179a0593c4
|
data/_includes/post_card.html
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
<div class="flex flex-col justify-between">
|
2
2
|
<div class="flex flex-col justify-between max-w-lg">
|
3
3
|
<a href="{{include.post.url | relative_url}}" aria-label="Post Url">
|
4
|
+
{% assign random_id = include.post.date | date: "%s" %}
|
5
|
+
{% assign random_image = 'https://picsum.photos/600/400/?blur&random=' | append: random_id %}
|
4
6
|
<div class="hover:opacity-90 transition duration-300 w-full h-60 bg-cover bg-center"
|
5
|
-
style="background-image: url('{{ post.image | default:
|
7
|
+
style="background-image: url('{{ include.post.image | default: random_image }}')">
|
6
8
|
</div>
|
7
9
|
</a>
|
8
10
|
<div class="pt-6">
|
data/_layouts/post.html
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: awesome-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- a-chacon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|