recursero-jekyll-theme 0.1.0
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 +7 -0
- data/LICENSE.txt +168 -0
- data/README.md +113 -0
- data/_data/en.yml +38 -0
- data/_data/es.yml +49 -0
- data/_data/forms/contacto.yml +40 -0
- data/_data/layouts/about.yml +109 -0
- data/_data/layouts/category.yml +106 -0
- data/_data/layouts/page.yml +124 -0
- data/_data/layouts/place.yml +186 -0
- data/_data/layouts/post.yml +124 -0
- data/_includes/boolean.html +30 -0
- data/_includes/burger.svg +1 -0
- data/_includes/contact.html +19 -0
- data/_includes/content.html +1 -0
- data/_includes/email.html +1 -0
- data/_includes/file.html +35 -0
- data/_includes/footer.html +14 -0
- data/_includes/form/boolean.html +1 -0
- data/_includes/form/content.html +1 -0
- data/_includes/form/email.html +1 -0
- data/_includes/form/file.html +1 -0
- data/_includes/form/hidden.html +1 -0
- data/_includes/form/image.html +1 -0
- data/_includes/form/input.html +1 -0
- data/_includes/form/markdown_content.html +1 -0
- data/_includes/form/number.html +1 -0
- data/_includes/form/predefined_array.html +1 -0
- data/_includes/form/section.html +1 -0
- data/_includes/form/separator.html +1 -0
- data/_includes/form/string.html +1 -0
- data/_includes/form/submit.html +1 -0
- data/_includes/form/tel.html +1 -0
- data/_includes/form/text.html +1 -0
- data/_includes/form/url.html +1 -0
- data/_includes/hidden.html +5 -0
- data/_includes/image.html +32 -0
- data/_includes/input.html +33 -0
- data/_includes/logo.svg +5 -0
- data/_includes/markdown_content.html +1 -0
- data/_includes/navbar.html +53 -0
- data/_includes/number.html +1 -0
- data/_includes/predefined_array.html +39 -0
- data/_includes/search.html +15 -0
- data/_includes/section.html +1 -0
- data/_includes/separator.html +1 -0
- data/_includes/share.html +21 -0
- data/_includes/share_box.html +16 -0
- data/_includes/string.html +3 -0
- data/_includes/submit.html +1 -0
- data/_includes/tel.html +1 -0
- data/_includes/text.html +32 -0
- data/_includes/url.html +1 -0
- data/_includes/x.svg +1 -0
- data/_layouts/about.html +71 -0
- data/_layouts/archive.html +21 -0
- data/_layouts/category.html +70 -0
- data/_layouts/default.html +28 -0
- data/_layouts/home.html +23 -0
- data/_layouts/page.html +71 -0
- data/_layouts/place.html +133 -0
- data/_layouts/post.html +84 -0
- data/_sass/accessibility.scss +13 -0
- data/_sass/embed.scss +5 -0
- data/_sass/helpers.scss +54 -0
- data/_sass/navbar.scss +56 -0
- data/_sass/share.html +12 -0
- data/_sass/share_box.html +16 -0
- data/_sass/share_box.scss +26 -0
- data/_sass/toggler.scss +39 -0
- data/assets/css/styles.scss +42 -0
- data/assets/css/styles.scss.orig +45 -0
- data/assets/fonts/forkawesome-webfont.woff2 +0 -0
- data/assets/js/entry.js +8 -0
- data/assets/js/script.js +65 -0
- data/assets/js/script.js.orig +72 -0
- data/assets/js/search.js +3 -0
- data/assets/templates/result.html +9 -0
- metadata +400 -0
@@ -0,0 +1,106 @@
|
|
1
|
+
---
|
2
|
+
title:
|
3
|
+
type: 'string'
|
4
|
+
required: true
|
5
|
+
label:
|
6
|
+
en: Título para la categoría
|
7
|
+
es: Category title
|
8
|
+
help:
|
9
|
+
en: Nombre de la categoría usada para clasificar artículos o fichas
|
10
|
+
es: Category name, used to clasify posts
|
11
|
+
description:
|
12
|
+
type: 'string'
|
13
|
+
label:
|
14
|
+
es: Descripción o explicación del uso de la categoría
|
15
|
+
en: Usage description of the category
|
16
|
+
help:
|
17
|
+
es: Este campo servirá para orientar acerca de cómo emplear la categoría, pueden incluirse casos de uso
|
18
|
+
en: This field is intended to give advice on the usage of the category, usage cases may be included as example
|
19
|
+
content:
|
20
|
+
type: 'markdown_content'
|
21
|
+
label:
|
22
|
+
es: 'Contenido del artículo'
|
23
|
+
en: 'Post content'
|
24
|
+
help:
|
25
|
+
es: 'Escribe aquí el artículo'
|
26
|
+
en: 'Write down your post'
|
27
|
+
category_previous:
|
28
|
+
type: belongs_to
|
29
|
+
filter:
|
30
|
+
layout: category
|
31
|
+
inverse: categories_next
|
32
|
+
label:
|
33
|
+
es: 'Categoría anterior'
|
34
|
+
en: 'Previous category'
|
35
|
+
help:
|
36
|
+
es: '¿De cuál categoría se desprende?'
|
37
|
+
en: 'To which category does this one depend?'
|
38
|
+
categories_next:
|
39
|
+
type: has_many
|
40
|
+
filter:
|
41
|
+
layout: category
|
42
|
+
inverse: category_previous
|
43
|
+
label:
|
44
|
+
es: 'Categorías siguientes'
|
45
|
+
en: 'Next categories'
|
46
|
+
help:
|
47
|
+
es: '¿Cuáles categorías se desprenden de esta?'
|
48
|
+
en: ''
|
49
|
+
posts:
|
50
|
+
type: has_and_belongs_to_many
|
51
|
+
inverse: categories
|
52
|
+
label:
|
53
|
+
es: 'Artículos'
|
54
|
+
en: 'Posts'
|
55
|
+
help:
|
56
|
+
es: 'Artículos dentro de esta categoría'
|
57
|
+
en: 'Posts on this category'
|
58
|
+
background_color:
|
59
|
+
type: 'color'
|
60
|
+
label:
|
61
|
+
es: 'Color de fondo'
|
62
|
+
en: 'Background color'
|
63
|
+
help:
|
64
|
+
es: ''
|
65
|
+
en: ''
|
66
|
+
foreground_color:
|
67
|
+
type: 'color'
|
68
|
+
label:
|
69
|
+
es: 'Color de tipografía'
|
70
|
+
en: 'Foreground color'
|
71
|
+
help:
|
72
|
+
es: ''
|
73
|
+
en: ''
|
74
|
+
shadow_color:
|
75
|
+
type: 'color'
|
76
|
+
label:
|
77
|
+
es: 'Color de la sombra'
|
78
|
+
en: 'Shadow color'
|
79
|
+
help:
|
80
|
+
es: ''
|
81
|
+
en: ''
|
82
|
+
draft:
|
83
|
+
type: 'boolean'
|
84
|
+
label:
|
85
|
+
es: 'Borrador'
|
86
|
+
en: 'Draft'
|
87
|
+
help:
|
88
|
+
es: 'Este artículo aun no está listo para publicar'
|
89
|
+
en: "This post isn't ready to be published yet"
|
90
|
+
order:
|
91
|
+
type: 'order'
|
92
|
+
label:
|
93
|
+
es: 'Orden'
|
94
|
+
en: 'Order'
|
95
|
+
help:
|
96
|
+
es: 'La posición del artículo en la lista de artículos'
|
97
|
+
en: 'The post position in the posts list'
|
98
|
+
notes:
|
99
|
+
type: 'markdown_text'
|
100
|
+
private: true
|
101
|
+
label:
|
102
|
+
es: 'Notas'
|
103
|
+
en: ''
|
104
|
+
help:
|
105
|
+
es: 'Comentarios internos, recordatorios, información privada. ¡No se publica en el sitio!'
|
106
|
+
en: ''
|
@@ -0,0 +1,124 @@
|
|
1
|
+
---
|
2
|
+
title:
|
3
|
+
type: 'string'
|
4
|
+
required: true
|
5
|
+
label:
|
6
|
+
es: 'Título del artículo'
|
7
|
+
en: 'Post title'
|
8
|
+
help:
|
9
|
+
es: '¡Un título que invite a leer el artículo!'
|
10
|
+
en: 'A title that invites people to read the post!'
|
11
|
+
description:
|
12
|
+
type: 'text'
|
13
|
+
required: true
|
14
|
+
label:
|
15
|
+
es: 'Alerta de contenido o descripción del artículo'
|
16
|
+
en: 'Content warning or post description'
|
17
|
+
help:
|
18
|
+
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.
|
24
|
+
en: |
|
25
|
+
Summary of the post contents, 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.
|
29
|
+
author:
|
30
|
+
type: 'array'
|
31
|
+
label:
|
32
|
+
es: 'Autores'
|
33
|
+
en: 'Authors'
|
34
|
+
help:
|
35
|
+
es: 'Quiénes participaron en la escritura de este artículo'
|
36
|
+
en: 'Who collaborated in write this post'
|
37
|
+
image:
|
38
|
+
type: 'image'
|
39
|
+
path:
|
40
|
+
label:
|
41
|
+
es: 'Imagen principal'
|
42
|
+
en: 'Main image'
|
43
|
+
help:
|
44
|
+
es: |
|
45
|
+
Se utiliza para ilustrar el artículo y como previsualización en
|
46
|
+
las redes sociales.
|
47
|
+
en: |
|
48
|
+
It's used to illustrate the article and as preview in social
|
49
|
+
networks.
|
50
|
+
description:
|
51
|
+
label:
|
52
|
+
es: 'Descripción de la imagen principal'
|
53
|
+
en: 'Main image description'
|
54
|
+
help:
|
55
|
+
es: |
|
56
|
+
Describe la imagen principal para usuaries no videntes y
|
57
|
+
buscadores
|
58
|
+
en: |
|
59
|
+
Describe the main image for blind or partially sighted users and
|
60
|
+
search engines
|
61
|
+
content:
|
62
|
+
type: 'content'
|
63
|
+
label:
|
64
|
+
es: 'Contenido del artículo'
|
65
|
+
en: 'Post content'
|
66
|
+
help:
|
67
|
+
es: 'Escribe aquí el artículo'
|
68
|
+
en: 'Write down your post'
|
69
|
+
permalink:
|
70
|
+
type: 'string'
|
71
|
+
label:
|
72
|
+
es: 'Enlace'
|
73
|
+
en: 'Permalink'
|
74
|
+
help:
|
75
|
+
es: |
|
76
|
+
Si no quieres utilizar el formato de enlaces general del sitio
|
77
|
+
para este artículo, especifica uno aquí.
|
78
|
+
en: |
|
79
|
+
If you don't want to follow the site's link format for this
|
80
|
+
post, change it here.
|
81
|
+
categories:
|
82
|
+
type: 'has_and_belongs_to_many'
|
83
|
+
filter:
|
84
|
+
layout: 'category'
|
85
|
+
inverse: 'posts'
|
86
|
+
label:
|
87
|
+
es: 'Categorías'
|
88
|
+
en: 'Categories'
|
89
|
+
help:
|
90
|
+
es: 'Ayudan a organizar los artículos en temas'
|
91
|
+
en: 'Use categories to organize posts by themes'
|
92
|
+
tags:
|
93
|
+
type: 'array'
|
94
|
+
label:
|
95
|
+
es: 'Etiquetas'
|
96
|
+
en: 'Tags'
|
97
|
+
help:
|
98
|
+
es: 'Usa etiquetas para resaltar palabras clave'
|
99
|
+
en: 'Tags are helpful as keywords'
|
100
|
+
draft:
|
101
|
+
type: 'boolean'
|
102
|
+
label:
|
103
|
+
es: 'Borrador'
|
104
|
+
en: 'Draft'
|
105
|
+
help:
|
106
|
+
es: 'Este artículo aun no está listo para publicar'
|
107
|
+
en: "This post isn't ready to be published yet"
|
108
|
+
order:
|
109
|
+
type: 'order'
|
110
|
+
label:
|
111
|
+
es: 'Orden'
|
112
|
+
en: 'Order'
|
113
|
+
help:
|
114
|
+
es: 'La posición del artículo en la lista de artículos'
|
115
|
+
en: 'The post position in the posts list'
|
116
|
+
notes:
|
117
|
+
type: 'markdown_text'
|
118
|
+
private: true
|
119
|
+
label:
|
120
|
+
es: 'Notas'
|
121
|
+
en: ''
|
122
|
+
help:
|
123
|
+
es: 'Comentarios internos, recordatorios, información privada. ¡No se publica en el sitio!'
|
124
|
+
en: ''
|
@@ -0,0 +1,186 @@
|
|
1
|
+
---
|
2
|
+
title:
|
3
|
+
type: 'string'
|
4
|
+
required: true
|
5
|
+
label:
|
6
|
+
es: 'Nombre'
|
7
|
+
en: 'Place'
|
8
|
+
help:
|
9
|
+
es: 'El nombre del lugar, espacio, servicio, consultorio'
|
10
|
+
en: 'Name of place, space, service, office'
|
11
|
+
description:
|
12
|
+
type: 'text'
|
13
|
+
label:
|
14
|
+
es: 'Alerta de contenido o descripción del artículo'
|
15
|
+
en: 'Content warning or post description'
|
16
|
+
help:
|
17
|
+
es: |
|
18
|
+
Resumen del contenido del artículo, que también usarán redes
|
19
|
+
sociales y buscadores. Si el artículo trata de violencias y otros
|
20
|
+
temas sensibles, te invitamos a usar este campo como alerta de
|
21
|
+
contenido, para que las personas puedan determinar cuándo quieren
|
22
|
+
abrirlo.
|
23
|
+
en: |
|
24
|
+
Summary of the post contents, also used by social media and search
|
25
|
+
engines. If the post is about violence and other sensitive
|
26
|
+
topics, we invite you to use it as a content warning, so others
|
27
|
+
can decide when they want to read it.
|
28
|
+
image:
|
29
|
+
type: 'image'
|
30
|
+
path:
|
31
|
+
label:
|
32
|
+
es: 'Imagen principal'
|
33
|
+
en: 'Main image'
|
34
|
+
help:
|
35
|
+
es: |
|
36
|
+
Se utiliza para ilustrar el artículo y como previsualización en
|
37
|
+
las redes sociales.
|
38
|
+
en: |
|
39
|
+
It's used to illustrate the article and as preview in social
|
40
|
+
networks.
|
41
|
+
description:
|
42
|
+
label:
|
43
|
+
es: 'Descripción de la imagen principal'
|
44
|
+
en: 'Main image description'
|
45
|
+
help:
|
46
|
+
es: |
|
47
|
+
Describe la imagen principal para usuaries no videntes y
|
48
|
+
buscadores
|
49
|
+
en: |
|
50
|
+
Describe the main image for blind or partially sighted users and
|
51
|
+
search engines
|
52
|
+
content:
|
53
|
+
type: 'content'
|
54
|
+
label:
|
55
|
+
es: 'Contenido del artículo'
|
56
|
+
en: 'Post content'
|
57
|
+
help:
|
58
|
+
es: 'Escribe aquí el artículo'
|
59
|
+
en: 'Write down your post'
|
60
|
+
permalink:
|
61
|
+
type: 'string'
|
62
|
+
label:
|
63
|
+
es: 'Enlace'
|
64
|
+
en: 'Permalink'
|
65
|
+
help:
|
66
|
+
es: |
|
67
|
+
Si no quieres utilizar el formato de enlaces general del sitio
|
68
|
+
para este artículo, especifica uno aquí.
|
69
|
+
en: |
|
70
|
+
If you don't want to follow the site's link format for this
|
71
|
+
post, change it here.
|
72
|
+
categories:
|
73
|
+
type: 'has_and_belongs_to_many'
|
74
|
+
filter:
|
75
|
+
layout: 'category'
|
76
|
+
inverse: 'posts'
|
77
|
+
label:
|
78
|
+
es: 'Categorías'
|
79
|
+
en: 'Categories'
|
80
|
+
help:
|
81
|
+
es: 'Ayudan a organizar los artículos en temas'
|
82
|
+
en: 'Use categories to organize posts by themes'
|
83
|
+
tags:
|
84
|
+
type: 'array'
|
85
|
+
label:
|
86
|
+
es: 'Etiquetas'
|
87
|
+
en: 'Tags'
|
88
|
+
help:
|
89
|
+
es: 'Las etiquetas son términos ad-hoc para agrupar información, pueden ser lugares, especialidades, tipos de cirugía, alertas de contenido, etc.'
|
90
|
+
en: 'Tags are helpful as keywords'
|
91
|
+
direccion:
|
92
|
+
type: 'string'
|
93
|
+
label:
|
94
|
+
es: 'Dirección'
|
95
|
+
en: 'Address'
|
96
|
+
help:
|
97
|
+
es: 'Dirección física del lugar'
|
98
|
+
en: 'Physical address of the place'
|
99
|
+
coordenadas:
|
100
|
+
type: 'geo'
|
101
|
+
label:
|
102
|
+
es: 'Coordenadas geográficas'
|
103
|
+
lat:
|
104
|
+
label:
|
105
|
+
es: 'Latitud'
|
106
|
+
help:
|
107
|
+
es: 'Latitud'
|
108
|
+
lng:
|
109
|
+
label:
|
110
|
+
es: 'Longitud'
|
111
|
+
help:
|
112
|
+
es: 'Longitud'
|
113
|
+
email:
|
114
|
+
type: 'string'
|
115
|
+
label:
|
116
|
+
es: 'Correo electrónico'
|
117
|
+
en: 'E-mail address'
|
118
|
+
help:
|
119
|
+
es: 'Dirección de correo electrónico para comunicarse'
|
120
|
+
en: 'E-mail address to write to'
|
121
|
+
transporte_publico:
|
122
|
+
type: 'array'
|
123
|
+
label:
|
124
|
+
es: 'Transporte público'
|
125
|
+
en: 'Phone numbers'
|
126
|
+
help:
|
127
|
+
es: 'Líneas de colectivos, trenes y subtes que pasan cerca'
|
128
|
+
en: 'Phone numbers to call'
|
129
|
+
telefonos:
|
130
|
+
type: 'array'
|
131
|
+
label:
|
132
|
+
es: 'Teléfonos'
|
133
|
+
en: 'Phone numbers'
|
134
|
+
help:
|
135
|
+
es: 'Los números de teléfono para comunicarse, entre paréntesis los horarios u otra información útil, ej. "12345678 (de 10 a 17hs)"'
|
136
|
+
en: 'Phone numbers to call'
|
137
|
+
horarios_de_atencion:
|
138
|
+
type: 'array'
|
139
|
+
label:
|
140
|
+
es: 'Horarios de atención'
|
141
|
+
en: 'Working hours'
|
142
|
+
help:
|
143
|
+
es: 'En el formato 09:00-17:00'
|
144
|
+
en: 'Use the format 09:00-17:00'
|
145
|
+
redes_sociales:
|
146
|
+
type: 'array'
|
147
|
+
label:
|
148
|
+
es: 'Sitio web y redes sociales'
|
149
|
+
en: 'Social networks'
|
150
|
+
help:
|
151
|
+
es: 'Direcciones, sitio web y redes sociales (ej. https://instagram.com/@recurserotrans en lugar de @recurserotrans)'
|
152
|
+
en: 'Web addresses of the social networks (ie. https://instagram.com/@recurserotrans instead of @recurserotrans)'
|
153
|
+
accesible:
|
154
|
+
type: 'boolean'
|
155
|
+
label:
|
156
|
+
es: 'Accesible a usuaries de sillas de ruedas'
|
157
|
+
en: ''
|
158
|
+
help:
|
159
|
+
es: 'Tildar si el espacio es accesible'
|
160
|
+
en: ""
|
161
|
+
draft:
|
162
|
+
type: 'boolean'
|
163
|
+
label:
|
164
|
+
es: 'Borrador'
|
165
|
+
en: 'Draft'
|
166
|
+
help:
|
167
|
+
es: 'Este artículo aun no está listo para publicar'
|
168
|
+
en: "This post isn't ready to be published yet"
|
169
|
+
order:
|
170
|
+
type: 'order'
|
171
|
+
label:
|
172
|
+
es: 'Orden'
|
173
|
+
en: 'Order'
|
174
|
+
help:
|
175
|
+
es: 'La posición del artículo en la lista de artículos'
|
176
|
+
en: 'The post position in the posts list'
|
177
|
+
notes:
|
178
|
+
type: 'markdown'
|
179
|
+
private: true
|
180
|
+
label:
|
181
|
+
es: 'Notas'
|
182
|
+
en: ''
|
183
|
+
help:
|
184
|
+
es: 'Comentarios internos, recordatorios, información privada. ¡No se publica en el sitio!'
|
185
|
+
en: ''
|
186
|
+
|
@@ -0,0 +1,124 @@
|
|
1
|
+
---
|
2
|
+
title:
|
3
|
+
type: 'string'
|
4
|
+
required: true
|
5
|
+
label:
|
6
|
+
es: 'Título del artículo'
|
7
|
+
en: 'Post title'
|
8
|
+
help:
|
9
|
+
es: '¡Un título que invite a leer el artículo!'
|
10
|
+
en: 'A title that invites people to read the post!'
|
11
|
+
description:
|
12
|
+
type: 'text'
|
13
|
+
required: true
|
14
|
+
label:
|
15
|
+
es: 'Alerta de contenido o descripción del artículo'
|
16
|
+
en: 'Content warning or post description'
|
17
|
+
help:
|
18
|
+
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.
|
24
|
+
en: |
|
25
|
+
Summary of the post contents, 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.
|
29
|
+
author:
|
30
|
+
type: 'array'
|
31
|
+
label:
|
32
|
+
es: 'Autores'
|
33
|
+
en: 'Authors'
|
34
|
+
help:
|
35
|
+
es: 'Quiénes participaron en la escritura de este artículo'
|
36
|
+
en: 'Who collaborated in write this post'
|
37
|
+
image:
|
38
|
+
type: 'image'
|
39
|
+
path:
|
40
|
+
label:
|
41
|
+
es: 'Imagen principal'
|
42
|
+
en: 'Main image'
|
43
|
+
help:
|
44
|
+
es: |
|
45
|
+
Se utiliza para ilustrar el artículo y como previsualización en
|
46
|
+
las redes sociales.
|
47
|
+
en: |
|
48
|
+
It's used to illustrate the article and as preview in social
|
49
|
+
networks.
|
50
|
+
description:
|
51
|
+
label:
|
52
|
+
es: 'Descripción de la imagen principal'
|
53
|
+
en: 'Main image description'
|
54
|
+
help:
|
55
|
+
es: |
|
56
|
+
Describe la imagen principal para usuaries no videntes y
|
57
|
+
buscadores
|
58
|
+
en: |
|
59
|
+
Describe the main image for blind or partially sighted users and
|
60
|
+
search engines
|
61
|
+
content:
|
62
|
+
type: 'content'
|
63
|
+
label:
|
64
|
+
es: 'Contenido del artículo'
|
65
|
+
en: 'Post content'
|
66
|
+
help:
|
67
|
+
es: 'Escribe aquí el artículo'
|
68
|
+
en: 'Write down your post'
|
69
|
+
permalink:
|
70
|
+
type: 'string'
|
71
|
+
label:
|
72
|
+
es: 'Enlace'
|
73
|
+
en: 'Permalink'
|
74
|
+
help:
|
75
|
+
es: |
|
76
|
+
Si no quieres utilizar el formato de enlaces general del sitio
|
77
|
+
para este artículo, especifica uno aquí.
|
78
|
+
en: |
|
79
|
+
If you don't want to follow the site's link format for this
|
80
|
+
post, change it here.
|
81
|
+
categories:
|
82
|
+
type: 'has_and_belongs_to_many'
|
83
|
+
filter:
|
84
|
+
layout: 'category'
|
85
|
+
inverse: 'posts'
|
86
|
+
label:
|
87
|
+
es: 'Categorías'
|
88
|
+
en: 'Categories'
|
89
|
+
help:
|
90
|
+
es: 'Ayudan a organizar los artículos en temas'
|
91
|
+
en: 'Use categories to organize posts by themes'
|
92
|
+
tags:
|
93
|
+
type: 'array'
|
94
|
+
label:
|
95
|
+
es: 'Etiquetas'
|
96
|
+
en: 'Tags'
|
97
|
+
help:
|
98
|
+
es: 'Usa etiquetas para resaltar palabras clave'
|
99
|
+
en: 'Tags are helpful as keywords'
|
100
|
+
draft:
|
101
|
+
type: 'boolean'
|
102
|
+
label:
|
103
|
+
es: 'Borrador'
|
104
|
+
en: 'Draft'
|
105
|
+
help:
|
106
|
+
es: 'Este artículo aun no está listo para publicar'
|
107
|
+
en: "This post isn't ready to be published yet"
|
108
|
+
order:
|
109
|
+
type: 'order'
|
110
|
+
label:
|
111
|
+
es: 'Orden'
|
112
|
+
en: 'Order'
|
113
|
+
help:
|
114
|
+
es: 'La posición del artículo en la lista de artículos'
|
115
|
+
en: 'The post position in the posts list'
|
116
|
+
notes:
|
117
|
+
type: 'markdown_text'
|
118
|
+
private: true
|
119
|
+
label:
|
120
|
+
es: 'Notas'
|
121
|
+
en: ''
|
122
|
+
help:
|
123
|
+
es: 'Comentarios internos, recordatorios, información privada. ¡No se publica en el sitio!'
|
124
|
+
en: ''
|