yefeme 0.8.0 → 0.8.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/_layouts/entry.html +17 -0
- data/_layouts/home.html +9 -15
- data/_layouts/post.html +1 -13
- data/_layouts/shoot.html +1 -13
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8945b5d2bdeeb91a738a50697ed6d35bc05fec954d404ce6ed01224c08ef47a9
|
|
4
|
+
data.tar.gz: c067c8bd42f0ce934e716559c5a2cb191a67c1ad8f0e75029033cd26d08dc903
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fd8b84c9ceb021c0f56248d0e6b7b1708961a9ef5bc6c3bda3d50a75eee794d7dffd94af956a9b43ef6067d99438fe560cd761d429f9ef43d3e47787f1bb8fe
|
|
7
|
+
data.tar.gz: 5f758ad58ce53c425124924db293cd03c516c957df6b412fdf21b387bfcfb9ed06640a43345f6cf37953d0e7f633cc347c03daef51d58f9682a50bc888cfa700
|
data/_layouts/entry.html
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<header>
|
|
6
|
+
<div class="logo">
|
|
7
|
+
{% include logo.svg width=46 height=61 %}
|
|
8
|
+
<div class="under under-small">
|
|
9
|
+
<h2 itemprop="name headline"><em>{{ page.title | escape }}</em></h2>
|
|
10
|
+
<p class="date"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time></p>
|
|
11
|
+
<a class="back accent" href="{{ "/" | relative_url }}">~ back home</a>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
<hr />
|
|
15
|
+
</header>
|
|
16
|
+
|
|
17
|
+
{{ content }}
|
data/_layouts/home.html
CHANGED
|
@@ -38,11 +38,11 @@ layout: default
|
|
|
38
38
|
|
|
39
39
|
<main>
|
|
40
40
|
{% for entry in entries %}
|
|
41
|
-
{% if entry.collection == "shoots" %}
|
|
42
|
-
<
|
|
43
|
-
|
|
44
|
-
<
|
|
45
|
-
|
|
41
|
+
<a class="post{% if entry.collection == "shoots" %} shoot-block{% endif %}" href="{{ entry.url | relative_url }}">
|
|
42
|
+
<span class="accent fixed-date">{{ entry.date | date: "%b %-d, %Y" }}</span>
|
|
43
|
+
<div class="post-details{% if entry.collection == "shoots" %} shoot-details{% endif %}">
|
|
44
|
+
<h2>{{ entry.title | escape }}</h2>
|
|
45
|
+
{% if entry.collection == "shoots" %}
|
|
46
46
|
{% assign total = entry.images | size %}
|
|
47
47
|
{% if total > 3 %}
|
|
48
48
|
{% assign preview_count = 4 %}
|
|
@@ -76,16 +76,10 @@ layout: default
|
|
|
76
76
|
</div>
|
|
77
77
|
{% endif %}
|
|
78
78
|
</div>
|
|
79
|
-
|
|
80
|
-
</a>
|
|
81
|
-
{% else %}
|
|
82
|
-
<a class="post" href="{{ entry.url | relative_url }}">
|
|
83
|
-
<span class="accent fixed-date">{{ entry.date | date: "%b %-d, %Y" }}</span>
|
|
84
|
-
<div class="post-details">
|
|
85
|
-
<h2>{{ entry.title | escape }}</h2>
|
|
79
|
+
{% else %}
|
|
86
80
|
<p class="excerpt">{{ entry.excerpt | strip_html | normalize_whitespace | truncate: 160 | escape }}</p>
|
|
87
|
-
|
|
88
|
-
</
|
|
89
|
-
|
|
81
|
+
{% endif %}
|
|
82
|
+
</div>
|
|
83
|
+
</a>
|
|
90
84
|
{% endfor %}
|
|
91
85
|
</main>
|
data/_layouts/post.html
CHANGED
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
layout:
|
|
2
|
+
layout: entry
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
<header>
|
|
6
|
-
<div class="logo">
|
|
7
|
-
{% include logo.svg width=46 height=61 %}
|
|
8
|
-
</svg>
|
|
9
|
-
<div class="under under-small">
|
|
10
|
-
<h2 itemprop="name headline"><em>{{ page.title | escape }}</em></h2>
|
|
11
|
-
<p class="date"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time></p>
|
|
12
|
-
<a class="back accent" href="{{ "/" | relative }}">~ back to blog</a>
|
|
13
|
-
</div>
|
|
14
|
-
</div>
|
|
15
|
-
<hr />
|
|
16
|
-
</header>
|
|
17
5
|
<main>
|
|
18
6
|
<article itemprop="articleBody">
|
|
19
7
|
{{ content }}
|
data/_layouts/shoot.html
CHANGED
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
layout:
|
|
2
|
+
layout: entry
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
<header>
|
|
6
|
-
<div class="logo">
|
|
7
|
-
{% include logo.svg width=46 height=61 %}
|
|
8
|
-
<div class="under under-small">
|
|
9
|
-
<h2 itemprop="name headline"><em>{{ page.title | escape }}</em></h2>
|
|
10
|
-
<p class="date"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time></p>
|
|
11
|
-
<a class="back accent" href="{{ "/" | relative_url }}">~ back home</a>
|
|
12
|
-
</div>
|
|
13
|
-
</div>
|
|
14
|
-
<hr />
|
|
15
|
-
</header>
|
|
16
|
-
|
|
17
5
|
<main class="portfolio-day">
|
|
18
6
|
{% assign thumb = site.cf_images_variants.thumb %}
|
|
19
7
|
{% assign xl = site.cf_images_variants.xl %}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yefeme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yefim Vedernikoff
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -39,6 +39,7 @@ files:
|
|
|
39
39
|
- _includes/logo.svg
|
|
40
40
|
- _includes/twitter.svg
|
|
41
41
|
- _layouts/default.html
|
|
42
|
+
- _layouts/entry.html
|
|
42
43
|
- _layouts/home.html
|
|
43
44
|
- _layouts/post.html
|
|
44
45
|
- _layouts/shoot.html
|