compost-jekyll-theme 0.3.7 → 0.3.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_data/fixtures/activity_pub/activities/sutty.yml +65 -0
- data/_data/fixtures/activity_pub/likes.yml +124 -0
- data/_data/fixtures/activity_pub/replies.yml +722 -0
- data/_data/fixtures/activity_pub/shared.yml +217 -0
- data/_data/fixtures/activity_pub/users/cibor_yogui.yml +93 -0
- data/_data/fixtures/activity_pub/users/edumerco.yml +108 -0
- data/_data/fixtures/activity_pub/users/f.yml +107 -0
- data/_data/fixtures/activity_pub/users/sutty.yml +105 -0
- data/_includes/image_supporter.html +6 -7
- data/_layouts/default.html +27 -16
- metadata +10 -2
data/_layouts/default.html
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
<!
|
1
|
+
<!doctype html>
|
2
2
|
<html lang="{{ site.lang }}" dir="{{ site.dir }}">
|
3
3
|
<head>
|
4
4
|
<meta charset="UTF-8">
|
5
|
-
<base href="{% base %}"
|
5
|
+
<base href="{% base %}">
|
6
6
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
7
7
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
8
|
-
<meta name="theme-color" content="white"
|
9
|
-
<meta name="color-scheme" content="light"
|
10
|
-
<meta name="referrer" content="strict-origin-when-cross-origin"
|
8
|
+
<meta name="theme-color" content="white">
|
9
|
+
<meta name="color-scheme" content="light">
|
10
|
+
<meta name="referrer" content="strict-origin-when-cross-origin">
|
11
11
|
|
12
12
|
<link href="assets/css/styles.css?{{ site.time | date: '%s' }}" rel="stylesheet" data-turbo-track="reload">
|
13
13
|
|
14
14
|
{%- include script.html src="assets/js/env.js" -%}
|
15
|
-
{%- if jekyll.environment ==
|
15
|
+
{%- if jekyll.environment == 'production' -%}
|
16
16
|
{%- for pack in site.data.manifest.outputs -%}
|
17
17
|
{%- unless pack[1].entryPoint -%}{%- continue -%}{%- endunless -%}
|
18
18
|
{%- assign src = pack[0] -%}
|
@@ -22,42 +22,53 @@
|
|
22
22
|
{%- include script.html src="pack.js" -%}
|
23
23
|
{%- endif -%}
|
24
24
|
|
25
|
-
{%- assign about = site.posts | find:
|
26
|
-
{%- assign theme = site.posts | find:
|
25
|
+
{%- assign about = site.posts | find: 'layout', 'about' -%}
|
26
|
+
{%- assign theme = site.posts | find: 'layout', 'theme' -%}
|
27
27
|
|
28
28
|
{% for apple_touch_size in site.data.theme.apple_touch_sizes %}
|
29
|
-
<link
|
29
|
+
<link
|
30
|
+
rel="apple-touch-icon"
|
31
|
+
sizes="{{ apple_touch_size }}x{{ apple_touch_size }}"
|
32
|
+
href="{{ about.favicon.path | thumbnail: apple_touch_size, apple_touch_size | uri_escape }}"
|
33
|
+
>
|
30
34
|
{% endfor %}
|
31
35
|
|
32
36
|
{% for chrome_icon_size in site.data.theme.chrome_icon_sizes %}
|
33
|
-
<link
|
37
|
+
<link
|
38
|
+
rel="icon"
|
39
|
+
type="image/png"
|
40
|
+
sizes="{{ chrome_icon_size }}x{{chrome_icon_size }}"
|
41
|
+
href="{{ about.favicon.path | thumbnail: chrome_icon_size , chrome_icon_size | uri_escape }}"
|
42
|
+
>
|
34
43
|
{% endfor %}
|
35
44
|
|
36
45
|
{% for msapplication_size in site.data.theme.msapplication_sizes %}
|
37
|
-
<meta
|
46
|
+
<meta
|
47
|
+
name="msapplication-TileImage"
|
48
|
+
content="{{ about.favicon.path | thumbnail: msapplication_size , msapplication_size | uri_escape }}"
|
49
|
+
>
|
38
50
|
{% endfor %}
|
39
51
|
|
40
52
|
<link rel="manifest" href="site.webmanifest">
|
41
53
|
<meta name="msapplication-TileColor" content="{{ theme.bg_color }}">
|
42
54
|
<meta name="theme-color" content="{{ theme.primary }}">
|
43
55
|
{% seo %}
|
44
|
-
|
45
56
|
|
46
57
|
{%- if page.activity -%}
|
47
|
-
<link href="{{ page.activity.id | absolute_url }}" rel="alternate" type="application/activity+json"
|
58
|
+
<link href="{{ page.activity.id | absolute_url }}" rel="alternate" type="application/activity+json">
|
48
59
|
{%- endif -%}
|
49
60
|
|
50
61
|
{%- if site.activity_pub_profile -%}
|
51
|
-
<meta property="profile:username" content="{{ site.activity_pub_profile }}"
|
62
|
+
<meta property="profile:username" content="{{ site.activity_pub_profile }}">
|
52
63
|
{%- endif -%}
|
53
64
|
|
54
65
|
{%- if site.actor -%}
|
55
|
-
<link rel="me" href="{{ site.actor.id | absolute_url }}"
|
66
|
+
<link rel="me" href="{{ site.actor.id | absolute_url }}">
|
56
67
|
{%- endif -%}
|
57
68
|
</head>
|
58
69
|
|
59
70
|
<body>
|
60
|
-
{% unless jekyll.environment ==
|
71
|
+
{% unless jekyll.environment == 'production' %}
|
61
72
|
{% include device_detector.html %}
|
62
73
|
{% endunless %}
|
63
74
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compost-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sutty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -307,6 +307,14 @@ files:
|
|
307
307
|
- _data/components.yml
|
308
308
|
- _data/en.yml
|
309
309
|
- _data/es.yml
|
310
|
+
- _data/fixtures/activity_pub/activities/sutty.yml
|
311
|
+
- _data/fixtures/activity_pub/likes.yml
|
312
|
+
- _data/fixtures/activity_pub/replies.yml
|
313
|
+
- _data/fixtures/activity_pub/shared.yml
|
314
|
+
- _data/fixtures/activity_pub/users/cibor_yogui.yml
|
315
|
+
- _data/fixtures/activity_pub/users/edumerco.yml
|
316
|
+
- _data/fixtures/activity_pub/users/f.yml
|
317
|
+
- _data/fixtures/activity_pub/users/sutty.yml
|
310
318
|
- _data/full_width_components.yml
|
311
319
|
- _data/layouts/about.yml
|
312
320
|
- _data/layouts/author.yml
|