sutty-minima 2.7.2 → 2.7.4
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
- checksums.yaml.gz.sig +0 -0
- data/_data/layouts/page.yml +14 -0
- data/_data/layouts/post.yml +14 -0
- data/_includes/head.html +3 -3
- data/_includes/post.html +1 -1
- data.tar.gz.sig +0 -0
- metadata +13 -13
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 20cd5c4fdbfe5da498fe3b86399fff2858b97b7dbc8e0e6b00e506c3d468011c
|
|
4
|
+
data.tar.gz: 548514db7aa26fc9dc0014d63f62f7b83e9487dcbdff27381da7a29d31ba80b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 991811d1eb80faa0008b5646551743eaef9942bab113e7134a6af2f9a936eee4435dc891727516eca58dc565efb5cccebe4cf57048d7f72f92d433dc05ca4889
|
|
7
|
+
data.tar.gz: 5b8fcdfe888e0e30fdba300869cb1929c9b6605c9210f4dc6f72e22de4027cfcb6ef36df81a2a432698cbfc28b08a4ad67265431a87ec816cbe3c22d39642f91
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/_data/layouts/page.yml
CHANGED
|
@@ -81,6 +81,20 @@ in_reply_to:
|
|
|
81
81
|
help:
|
|
82
82
|
es: "Agrega aquí el vínculo a un artículo para generar una respuesta"
|
|
83
83
|
en: "Add the link to another article to reply to"
|
|
84
|
+
permalink:
|
|
85
|
+
type: 'permalink'
|
|
86
|
+
label:
|
|
87
|
+
es: 'Enlace'
|
|
88
|
+
en: 'Permalink'
|
|
89
|
+
help:
|
|
90
|
+
es: |
|
|
91
|
+
Si no quieres utilizar el formato de enlaces general del sitio
|
|
92
|
+
para este artículo, especifica uno aquí. Usa "/" para transformar esta página en la
|
|
93
|
+
portada del sitio, o dejalo vacío para auto-generar la dirección.
|
|
94
|
+
en: |
|
|
95
|
+
If you don't want to follow the site's link format for this post,
|
|
96
|
+
change it here. Use "/" to set this page as the home page, or
|
|
97
|
+
leave empty to auto-generate it.
|
|
84
98
|
locales:
|
|
85
99
|
type: "locales"
|
|
86
100
|
label:
|
data/_data/layouts/post.yml
CHANGED
|
@@ -81,6 +81,20 @@ in_reply_to:
|
|
|
81
81
|
help:
|
|
82
82
|
es: "Agrega aquí el vínculo a un artículo para generar una respuesta"
|
|
83
83
|
en: "Add the link to another article to reply to"
|
|
84
|
+
permalink:
|
|
85
|
+
type: 'permalink'
|
|
86
|
+
label:
|
|
87
|
+
es: 'Enlace'
|
|
88
|
+
en: 'Permalink'
|
|
89
|
+
help:
|
|
90
|
+
es: |
|
|
91
|
+
Si no quieres utilizar el formato de enlaces general del sitio
|
|
92
|
+
para este artículo, especifica uno aquí. Usa "/" para transformar esta página en la
|
|
93
|
+
portada del sitio, o dejalo vacío para auto-generar la dirección.
|
|
94
|
+
en: |
|
|
95
|
+
If you don't want to follow the site's link format for this post,
|
|
96
|
+
change it here. Use "/" to set this page as the home page, or
|
|
97
|
+
leave empty to auto-generate it.
|
|
84
98
|
locales:
|
|
85
99
|
type: "locales"
|
|
86
100
|
label:
|
data/_includes/head.html
CHANGED
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
|
|
18
18
|
{%- if page.activity -%}
|
|
19
19
|
<link
|
|
20
|
-
href="{{ page.activity.
|
|
20
|
+
href="{{ page.activity.id | uri_escape }}"
|
|
21
21
|
rel="alternate"
|
|
22
22
|
type="application/activity+json" />
|
|
23
23
|
<link
|
|
24
|
-
href="{{ page.activity.
|
|
24
|
+
href="{{ page.activity.id | uri_escape }}"
|
|
25
25
|
rel="alternate"
|
|
26
26
|
type='application/ld+json; profile="https://www.w3.org/ns/activitystreams"' />
|
|
27
27
|
{%- endif -%}
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
{%- endif -%}
|
|
32
32
|
|
|
33
33
|
{%- if site.actor -%}
|
|
34
|
-
<link rel="me" href="{{ site.actor.
|
|
34
|
+
<link rel="me" href="{{ site.actor.id | uri_escape }}" />
|
|
35
35
|
{%- endif -%}
|
|
36
36
|
</head>
|
data/_includes/post.html
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
|
|
8
8
|
|
|
9
9
|
{% if page.description %}
|
|
10
|
-
<div class="
|
|
10
|
+
<div class="p-summary" itemprop="description">
|
|
11
11
|
{{ page.description | allow_inclusive_language_in_markdown | markdownify }}
|
|
12
12
|
</div>
|
|
13
13
|
{% endif %}
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sutty-minima
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.7.
|
|
4
|
+
version: 2.7.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- f
|
|
@@ -13,7 +13,7 @@ cert_chain:
|
|
|
13
13
|
-----BEGIN CERTIFICATE-----
|
|
14
14
|
MIIEYDCCAsigAwIBAgIBATANBgkqhkiG9w0BAQsFADA7MQ4wDAYDVQQDDAVmYXVu
|
|
15
15
|
bzEVMBMGCgmSJomT8ixkARkWBXN1dHR5MRIwEAYKCZImiZPyLGQBGRYCbmwwHhcN
|
|
16
|
-
|
|
16
|
+
MjYwMTE1MTQzMDQ0WhcNMjcwMTE1MTQzMDQ0WjA7MQ4wDAYDVQQDDAVmYXVubzEV
|
|
17
17
|
MBMGCgmSJomT8ixkARkWBXN1dHR5MRIwEAYKCZImiZPyLGQBGRYCbmwwggGiMA0G
|
|
18
18
|
CSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDqrFZ8PCNQbaW1incHEZp/OZTIt7bZ
|
|
19
19
|
TMKmkVLeRDqsSBGWTGdZbzRS6idn0vUKlTTnclPPG7dXw1r+AiYVdwIdjx16SLV1
|
|
@@ -26,17 +26,17 @@ cert_chain:
|
|
|
26
26
|
OfvhZ41piDp/Kh0Cjgl1+o/fWTCh27yxb50CAwEAAaNvMG0wCQYDVR0TBAIwADAL
|
|
27
27
|
BgNVHQ8EBAMCBLAwHQYDVR0OBBYEFIH0kjcsF7inzAwy488EEY5thfpiMBkGA1Ud
|
|
28
28
|
EQQSMBCBDmZhdW5vQHN1dHR5Lm5sMBkGA1UdEgQSMBCBDmZhdW5vQHN1dHR5Lm5s
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
MA0GCSqGSIb3DQEBCwUAA4IBgQCbC2LPbQwQ0YMvyx87FOEu56X+CG14d8+jXQzQ
|
|
30
|
+
+vXs5mn8KxNsLpqwesLpQUrnZo2Riu508XvHnz5S+LRQgHs3fWJxZAzZgk3IQpaS
|
|
31
|
+
RfYx/S+2D/Pj5BbFUrQtSzvb+bT1bQp33SP4iF3qVt89Mcm+wnlXGoB6DvjZ+48g
|
|
32
|
+
Vo94+QPTx5xCEUX50bkO2NZlQ4BE8IiHAaGR5c3tF5+pc+SnEFXFGJSYzXciyNgf
|
|
33
|
+
j2/Kvfs1W/X+W6mCoo6tTgHQM9vMk7bgREZkhQ33iNK6+7IsGCDlNuKcXjJykSqJ
|
|
34
|
+
zY6og/GTEVPpKbFvHcrebKT6HMOCIMD5Q/8whxTWH+GWMuoV9l7tikfX2uAKz/fS
|
|
35
|
+
Ci6FFLH2vK5bS5h0ZTCDaJwZ3ikKQl52F+IY3NxFmg3X38xlVrDqnIZWb06aAXjO
|
|
36
|
+
AloSNM24NWhA2fme6cgZOLKXvAKgf6pQsNtAnU1Pliou5GvJ62d8l+pdKGxJ4yTn
|
|
37
|
+
fVGcO+Lu49Bx33evJ2ixPmQ2OXc=
|
|
38
38
|
-----END CERTIFICATE-----
|
|
39
|
-
date:
|
|
39
|
+
date: 2026-08-19 00:00:00.000000000 Z
|
|
40
40
|
dependencies:
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: jekyll
|
|
@@ -187,7 +187,7 @@ files:
|
|
|
187
187
|
- _sass/minima/skins/solarized.scss
|
|
188
188
|
- assets/css/style.scss
|
|
189
189
|
- assets/minima-social-icons.svg
|
|
190
|
-
homepage: https://
|
|
190
|
+
homepage: https://git.sutty.abyaya.la/jekyll/sutty-minima.git
|
|
191
191
|
licenses:
|
|
192
192
|
- MIT
|
|
193
193
|
metadata:
|
metadata.gz.sig
CHANGED
|
Binary file
|