radios-comunitarias-jekyll-theme 0.2.0 → 0.3.0rc0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ddb715619bd208a97059379c172a67d50d86fdf9a5f60c86f8abf8c2d7f2c81
4
- data.tar.gz: 8bccbb7f4e90e3fdaed43e105c198f64bb5ac7c952662f77fbdb9d615685c49b
3
+ metadata.gz: 1b9c033de3c73fc2c8925f9e4386fb6126554e276e3c79b1598b8956e8d1f545
4
+ data.tar.gz: 1fd22242e0417a153f0d1250719c28cdb3a0cd6ce2d3d8d36b5a114849cae31e
5
5
  SHA512:
6
- metadata.gz: a0ab8100fa96052e233d993e7d8208c673be99de755baf99ba0b2d31d568a6df4751be5b25b669d79dc8a3ae12d4ab7e97023fd3c2b045e14ccb778e83837122
7
- data.tar.gz: cd988afbd3bae6f82573a5a10325aac75ca8c08a1e6eb469ca0e8d16ab3d028d10efa160c7981cb8ae8b8223e7b8c69426b058e219d95c4539710f52bd195b6d
6
+ metadata.gz: ab9e97139cc58c244906db6df5d48a8f6085ee5bde184a8f4be591a1d2702d7b00ae081f8e12cd92bbb981047b2858fec3f296d69c3e888c8427c3dcf21971f3
7
+ data.tar.gz: ec4fdd3d1fd72bb7fbda5b58ab70083d3d6a670bd7696ebab4b09c896c36e6a0feeda0e1cc3cb125f09ce3a773a1d5c2afc6a0883e171a0c7124e65359df29a0
data/_data/en.yml CHANGED
@@ -6,6 +6,7 @@ layouts:
6
6
  radio: Radio
7
7
  no_audio_support: "Your browser doesn't support audio, please copy this address:"
8
8
  other_posts: "Previous Articles"
9
+ fediverse: "Fediverse"
9
10
  footer:
10
11
  credits: "Made with [Sutty](https://sutty.nl/), design by [librenauta](https://copiona.com/)"
11
12
  menu:
data/_data/es.yml CHANGED
@@ -6,6 +6,7 @@ layouts:
6
6
  radio: Radio
7
7
  no_audio_support: "Tu navegador no soporta audio, copia esta dirección en un reproductor:"
8
8
  other_posts: "Artículos anteriores"
9
+ fediverse: "Fediverso"
9
10
  footer:
10
11
  credits: "Sitio hecho con [Sutty](https://sutty.nl/), diseño por [librenauta](https://copiona.com/)"
11
12
  menu:
@@ -8,24 +8,28 @@ title:
8
8
  help:
9
9
  es: "¡Un título que invite a leer el artículo!"
10
10
  en: "A title that makes people want to read the post!"
11
- description:
12
- type: "text"
13
- required: true
11
+ content_warning:
12
+ type: "string"
14
13
  label:
15
- es: "Alerta de contenido o descripción del artículo"
16
- en: "Content warning or post description"
14
+ es: "Alerta de contenido"
15
+ en: "Content warning"
17
16
  help:
18
17
  es: |
19
- Resumen del contenido del artículo, que también usarán redes
20
- sociales y buscadores. Si el artículo trata de violencias y otros
21
- temas sensibles, te invitamos a usar este campo como alerta de
22
- contenido, para que las personas puedan determinar cuándo quieren
23
- abrirlo.
18
+ Si el artículo trata de violencias y otros temas sensibles, te
19
+ invitamos a usar este campo como alerta de contenido, para que las
20
+ personas puedan determinar cuándo quieren abrirlo.
24
21
  en: |
25
- Summary of post content, also used by social media and search
26
- engines. If the post is about violence and other sensitive
27
- topics, we invite you to use it as a content warning, so others
28
- can decide when they want to read it.
22
+ If the post is about violence and other sensitive topics, we
23
+ invite you to use it as a content warning, so others can decide
24
+ when they want to read it.
25
+ description:
26
+ type: "text"
27
+ label:
28
+ es: "Descripción del artículo"
29
+ en: "Post description"
30
+ help:
31
+ es: "Descripción del contenido del artículo, que también usarán redes sociales y buscadores."
32
+ en: "Description of post content, also used by social media and search engines."
29
33
  author:
30
34
  type: "array"
31
35
  label:
@@ -58,6 +62,25 @@ content:
58
62
  help:
59
63
  es: "Escribe aquí el artículo"
60
64
  en: "Write your post here"
65
+ activity:
66
+ type: "boolean"
67
+ label:
68
+ es: "Publicar en el Fediverso"
69
+ en: "Publish to Fediverse"
70
+ help:
71
+ es: "Si tu sitio tiene habilitado Social Distributed Press, habilita para publicar en el Fediverso"
72
+ en: "If your site has Social Distributed Press enabled, tick to publish to the Fediverse"
73
+ default:
74
+ es: true
75
+ en: true
76
+ in_reply_to:
77
+ type: "url"
78
+ label:
79
+ es: "En respuesta a"
80
+ en: "In reply to"
81
+ help:
82
+ es: "Agrega aquí el vínculo a un artículo para generar una respuesta"
83
+ en: "Add the link to another article to reply to"
61
84
  categories:
62
85
  type: "array"
63
86
  label:
@@ -44,6 +44,17 @@
44
44
  <a href="{{ privacy_policy.url }}" rel="privacy-policy">{{ privacy_policy.title }}</a>
45
45
  </li>
46
46
  {% endif %}
47
+
48
+ {%- if site.activity_pub_profile -%}
49
+ <li>
50
+ <span>
51
+ {{- site.i18n.fediverse -}}
52
+ </span>
53
+ <span>
54
+ @{{ site.activity_pub_profile -}}
55
+ </span>
56
+ </li>
57
+ {%- endif -%}
47
58
  </div>
48
59
  </div>
49
60
 
@@ -15,6 +15,18 @@
15
15
  {% seo %}
16
16
  {% feed_meta %}
17
17
 
18
+ {%- if page.activity -%}
19
+ <link href="{{ page.activity.url | absolute_url }}" rel="alternate" type="application/activity+json" />
20
+ {%- endif -%}
21
+
22
+ {%- if site.activity_pub_profile -%}
23
+ <meta property="profile:username" content="{{ site.activity_pub_profile }}" />
24
+ {%- endif -%}
25
+
26
+ {%- if site.actor -%}
27
+ <link rel="me" href="{{ site.actor.url | absolute_url }}" />
28
+ {%- endif -%}
29
+
18
30
  {%- if page.locales -%}
19
31
  {% for locale in page.locales %}
20
32
  <link
@@ -65,3 +65,7 @@ $navbar-brand-font-size: 1rem;
65
65
  .turbolinks-progress-bar {
66
66
  background-color: $navbar-foreground;
67
67
  }
68
+
69
+ img, video {
70
+ max-width: 100%;
71
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radios-comunitarias-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0rc0
5
5
  platform: ruby
6
6
  authors:
7
7
  - f
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2023-04-03 00:00:00.000000000 Z
14
+ date: 2023-11-17 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: jekyll
@@ -303,9 +303,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
303
303
  version: '0'
304
304
  required_rubygems_version: !ruby/object:Gem::Requirement
305
305
  requirements:
306
- - - ">="
306
+ - - ">"
307
307
  - !ruby/object:Gem::Version
308
- version: '0'
308
+ version: 1.3.1
309
309
  requirements: []
310
310
  rubygems_version: 3.3.26
311
311
  signing_key: