imagen-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.
Files changed (166) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +168 -0
  3. data/README.md +176 -0
  4. data/_config.yml +47 -0
  5. data/_data/components.yml +18 -0
  6. data/_data/en.yml +109 -0
  7. data/_data/es.yml +162 -0
  8. data/_data/fixtures/grilla.yml +37 -0
  9. data/_data/forms/subir_imagen.yml +43 -0
  10. data/_data/full_width_components.yml +4 -0
  11. data/_data/layouts/about.yml +155 -0
  12. data/_data/layouts/code_of_conduct.yml +60 -0
  13. data/_data/layouts/imagen.yml +67 -0
  14. data/_data/layouts/license.yml +60 -0
  15. data/_data/layouts/menu.yml +72 -0
  16. data/_data/layouts/post.yml +100 -0
  17. data/_data/layouts/privacy_policy.yml +60 -0
  18. data/_data/layouts/theme.yml +293 -0
  19. data/_data/manifest.json +14535 -0
  20. data/_data/schema.yml +9 -0
  21. data/_data/sutty.yml +6 -0
  22. data/_data/theme.yml +173 -0
  23. data/_includes/boolean.html +38 -0
  24. data/_includes/buttons/button.html +9 -0
  25. data/_includes/buttons/copy.html +28 -0
  26. data/_includes/buttons/generic.html +15 -0
  27. data/_includes/buttons/link.html +14 -0
  28. data/_includes/contact.html +17 -0
  29. data/_includes/content.html +9 -0
  30. data/_includes/descriptor.html +18 -0
  31. data/_includes/device_detector.html +30 -0
  32. data/_includes/email.html +9 -0
  33. data/_includes/embed_responsive.html +16 -0
  34. data/_includes/file.html +43 -0
  35. data/_includes/floating_alert.html +6 -0
  36. data/_includes/footer.html +5 -0
  37. data/_includes/form/boolean.html +1 -0
  38. data/_includes/form/content.html +1 -0
  39. data/_includes/form/email.html +1 -0
  40. data/_includes/form/file.html +1 -0
  41. data/_includes/form/hidden.html +1 -0
  42. data/_includes/form/image.html +1 -0
  43. data/_includes/form/input.html +1 -0
  44. data/_includes/form/markdown_content.html +1 -0
  45. data/_includes/form/number.html +1 -0
  46. data/_includes/form/predefined_array.html +1 -0
  47. data/_includes/form/section.html +1 -0
  48. data/_includes/form/separator.html +1 -0
  49. data/_includes/form/string.html +1 -0
  50. data/_includes/form/submit.html +1 -0
  51. data/_includes/form/tel.html +1 -0
  52. data/_includes/form/text.html +1 -0
  53. data/_includes/form/url.html +1 -0
  54. data/_includes/grilla.html +21 -0
  55. data/_includes/headings/generic.html +14 -0
  56. data/_includes/headings/h1.html +9 -0
  57. data/_includes/headings/h2.html +9 -0
  58. data/_includes/headings/h3.html +9 -0
  59. data/_includes/headings/with_link.html +15 -0
  60. data/_includes/hidden.html +5 -0
  61. data/_includes/image.html +57 -0
  62. data/_includes/imagen.html +13 -0
  63. data/_includes/imagen_enviada.html +6 -0
  64. data/_includes/imagen_enviada_error.html +9 -0
  65. data/_includes/imagen_grilla.html +31 -0
  66. data/_includes/input.html +61 -0
  67. data/_includes/item.html +38 -0
  68. data/_includes/logo.html +12 -0
  69. data/_includes/markdown_content.html +9 -0
  70. data/_includes/menu.html +69 -0
  71. data/_includes/notification.html +5 -0
  72. data/_includes/number.html +9 -0
  73. data/_includes/pack.html +10 -0
  74. data/_includes/password.html +10 -0
  75. data/_includes/picture.html +25 -0
  76. data/_includes/predefined_array.html +47 -0
  77. data/_includes/preload_font.html +1 -0
  78. data/_includes/question_mark_button.html +6 -0
  79. data/_includes/script.html +5 -0
  80. data/_includes/search.html +25 -0
  81. data/_includes/section.html +1 -0
  82. data/_includes/send_message.html +6 -0
  83. data/_includes/separator.html +1 -0
  84. data/_includes/share.html +22 -0
  85. data/_includes/share_box.html +31 -0
  86. data/_includes/stretched_link.html +15 -0
  87. data/_includes/string.html +12 -0
  88. data/_includes/subir_imagen.html +29 -0
  89. data/_includes/submit.html +18 -0
  90. data/_includes/svg/arrow-left.svg +29 -0
  91. data/_includes/svg/check.svg +1 -0
  92. data/_includes/svg/copy-icon.svg +1 -0
  93. data/_includes/svg/done-icon.svg +1 -0
  94. data/_includes/svg/location.svg +13 -0
  95. data/_includes/svg/menu.svg +8 -0
  96. data/_includes/svg/photo.svg +7 -0
  97. data/_includes/svg/signo-pregunta.svg +16 -0
  98. data/_includes/svg/x.svg +3 -0
  99. data/_includes/tel.html +9 -0
  100. data/_includes/text.html +40 -0
  101. data/_includes/theme/blue_button.html +1 -0
  102. data/_includes/theme/button_with_copy.html +1 -0
  103. data/_includes/theme/button_with_link.html +5 -0
  104. data/_includes/theme/buttons.html +33 -0
  105. data/_includes/theme/colors.html +14 -0
  106. data/_includes/theme/content.html +41 -0
  107. data/_includes/theme/descriptor.html +1 -0
  108. data/_includes/theme/embed_responsive.html +10 -0
  109. data/_includes/theme/font_sizes.html +18 -0
  110. data/_includes/theme/footer.html +1 -0
  111. data/_includes/theme/grilla.html +3 -0
  112. data/_includes/theme/imagen.html +8 -0
  113. data/_includes/theme/imagen_enviada.html +5 -0
  114. data/_includes/theme/imagen_enviada_error.html +7 -0
  115. data/_includes/theme/imagen_grilla.html +8 -0
  116. data/_includes/theme/letter_spacing.html +3 -0
  117. data/_includes/theme/menu.html +1 -0
  118. data/_includes/theme/picture.html +5 -0
  119. data/_includes/theme/question.html +2 -0
  120. data/_includes/theme/subir_imagen.html +1 -0
  121. data/_includes/toggler/toggler.html +21 -0
  122. data/_includes/toggler/toggler_label.html +21 -0
  123. data/_includes/toggler/toggler_related.html +23 -0
  124. data/_includes/toggler.html +19 -0
  125. data/_includes/toggler_label.html +22 -0
  126. data/_includes/toggler_related.html +24 -0
  127. data/_includes/url.html +9 -0
  128. data/_layouts/ayuda.html +40 -0
  129. data/_layouts/code_of_conduct.html +45 -0
  130. data/_layouts/default.html +93 -0
  131. data/_layouts/home.html +49 -0
  132. data/_layouts/imagen.html +45 -0
  133. data/_layouts/imagen_enviada.html +17 -0
  134. data/_layouts/imagenes.html +21 -0
  135. data/_layouts/institucional.html +20 -0
  136. data/_layouts/license.html +45 -0
  137. data/_layouts/login.html +26 -0
  138. data/_layouts/page.html +5 -0
  139. data/_layouts/post.html +71 -0
  140. data/_layouts/privacy_policy.html +45 -0
  141. data/_layouts/subir_imagen.html +19 -0
  142. data/_layouts/theme.html +60 -0
  143. data/_sass/accessibility.scss +46 -0
  144. data/_sass/content.scss +28 -0
  145. data/_sass/editor.scss +17 -0
  146. data/_sass/embed.scss +13 -0
  147. data/_sass/floating_alert.scss +48 -0
  148. data/_sass/fonts.scss +36 -0
  149. data/_sass/menu.scss +36 -0
  150. data/_sass/share_box.scss +26 -0
  151. data/_sass/snap.scss +60 -0
  152. data/_sass/toggler.scss +20 -0
  153. data/_sass/utilities.scss +531 -0
  154. data/assets/css/styles.scss +39 -0
  155. data/assets/data/site.json +10 -0
  156. data/assets/fonts/Helvetica.woff2 +0 -0
  157. data/assets/fonts/forkawesome-webfont.woff2 +0 -0
  158. data/assets/fonts/roboto/v27/KFOjCnqEu92Fr1Mu51TzBhc9-subset.woff2 +0 -0
  159. data/assets/fonts/roboto/v27/KFOkCnqEu92Fr1MmgWxP-subset.woff2 +0 -0
  160. data/assets/fonts/roboto/v27/KFOkCnqEu92Fr1Mu52xP-subset.woff2 +0 -0
  161. data/assets/fonts/roboto/v27/KFOlCnqEu92Fr1MmWUlvAw-subset.woff2 +0 -0
  162. data/assets/fonts/roboto/v27/KFOmCnqEu92Fr1Me5Q-subset.woff2 +0 -0
  163. data/assets/js/env.js +8 -0
  164. data/assets/js/pack.5JQIOXYX.js +48 -0
  165. data/assets/js/pack.5JQIOXYX.js.map +7 -0
  166. metadata +544 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dada03ee5096dee72005bb6535355c01e3fa64d77fbe2213a951e4bdf796dd11
4
+ data.tar.gz: f1238d4bcd6a45cd9a5f500ddecbfc04a1169166bb94a096b95193c0811ac52c
5
+ SHA512:
6
+ metadata.gz: 49020807fb9c54c8c374d3c9fbaee5b5570ccb6b489bd4d04beecbc1f2740d9b675e2f3e8fcccfb3fab292d5eef75ccf07ae01c55ae59a4722ca8456a30cfd3c
7
+ data.tar.gz: eed0b4566621451047f37edb5c29ceac227d4498e0c190e4d8ea2da20aabdaab9132c6db5a908606379962589e3d7fb0d2ea9b48e46760dc28572706012c24cb
data/LICENSE.txt ADDED
@@ -0,0 +1,168 @@
1
+ Copyright (c) 2020 Sutty
2
+
3
+ The following license is modified from the MIT license and downloaded
4
+ from <https://github.com/Laurelai/anti-fascist-mit-license> on
5
+ 2019-07-11.
6
+
7
+ Anti-Fascist MIT License:
8
+
9
+ The following conditions must be met by any person obtaining a copy of
10
+ this software:
11
+
12
+ - You MAY NOT be a fascist.
13
+ - You MUST not financially support fascists.
14
+ - You MUST not intentionally provide or knowingly provide through
15
+ inaction a platform for fascists to spread propaganda or organize.
16
+ - You MUST not publicly voice support for fascists.
17
+ - You MAY NOT be a member of any fascist organization, even if you are a
18
+ member to infiltrate for anti-fascist purposes.
19
+
20
+ "Fascist" can be understood as any group or individual who promotes the
21
+ political ideology of fascism.
22
+
23
+ "Fascism" can be broken down into 11 ideological features as well as 8
24
+ tactics that can form a fascist system in varying combinations, for the
25
+ sake of simplicity and brevity the individual or organization in
26
+ question must match to at least 5 features or tactics or a combination
27
+ of the two determined by the individual licencer.
28
+
29
+ Said licencer may provide a list if an individual or group matches to at
30
+ least 5 features upon request from the individual or group in question.
31
+
32
+ The ideological features are listed below.
33
+
34
+ 1. Hyper-nationalism.
35
+
36
+ As defined as "The belief in the superiority of one's nation and of the
37
+ paramount importance of advancing it."
38
+
39
+ 2. Militarism.
40
+
41
+ As defined as "Advocating for an increase in military forces beyond what
42
+ the real defense of a nation needs, more influence of the military upon
43
+ the policies of the civilian government, and a preference for force as a
44
+ solution over diplomacy for problems."
45
+
46
+ 3. Glorification of violence and readiness to use it in politics.
47
+
48
+ As defined as "The belief that violence can be used to cleanse a
49
+ tarnished nation, also by using violence to harm, intimidate or kill
50
+ political oppoenents."
51
+
52
+ 4. Fetishization of youth.
53
+
54
+ As defined as "Extolling the virtues of youth and making a special
55
+ appeal to young people to join a cause or organization"
56
+
57
+ 5. Fetishization of masculinity.
58
+
59
+ As defined as "Extolling the virtues of male authority or patriarchy and
60
+ making a special appeal to men to be leaders of households and groups"
61
+
62
+ 6. Leader cult.
63
+
64
+ As defined as "Creating an idealized, heroic, and worshipful image of a
65
+ leader, often through unquestioning flattery and praise."
66
+
67
+ 7. Lost-golden-age syndrome.
68
+
69
+ As defined as "Creating or promoting the idea that a nation had a lost
70
+ or stolen golden age in the past that must be returned to"
71
+
72
+ 8. Self-definition by opposition.
73
+
74
+ As defined as "Creating or promoting the idea that the group or
75
+ individual is the only person or way who can fight real or imagined
76
+ evils within a society."
77
+
78
+ 9. Mass mobilization and mass party.
79
+
80
+ As defined as "Creating or promoting the creation of a populist group or
81
+ party for the advancment of fascist tactics or features."
82
+
83
+ 10. Hierarchical party structure and tendency to purge the disloyal.
84
+
85
+ As defined as "Removal of membership from a group for lacking absolute
86
+ loyalty or lacking further usefulness to the group. Also having a
87
+ hierarchical structure within the group itself."
88
+
89
+ 11. Theatricality.
90
+
91
+ As defined as "Using spectacle to gain and keep the attention of those
92
+ inside and outside of the group using speeches full of absolutes and or
93
+ superlatives. Elaborate collective rituals (rallies) meant to reenforce
94
+ loyalty within the group."
95
+
96
+ Fascist tactics include
97
+
98
+ 1) Persecution of national minorities.
99
+ 2) Persecution of racial minorities.
100
+ 3) Persecution of religious minorities (Anti-Semitism, Islamophobia and others).
101
+ 4) Promotion of a type of national purity.
102
+ 5) Promotion of a state run by ideologically oriented corporate bodies.
103
+ 6) Persecution of gender or sexual minorities.
104
+ 7) Persecution of the disabled.
105
+ 8) Formation of extra-legal forces (brownshirts) to defend fascist values.
106
+
107
+ Special criteria: Meeting only one point of the special criteria is
108
+ enough to consider someone or a group to be fascist for the purposes of
109
+ this licence.
110
+
111
+ 1. Promotion of any theories that state members of the jewish ethnicity
112
+ or faith control or largely control the world, finance, or other
113
+ global major power system.
114
+
115
+ 2. Denial of the holocaust or any other historically proven genocide.
116
+
117
+ 3. Promotion of ethnostates.
118
+
119
+ 4. Advocating for eugenics. Either positive or negative eugenics.
120
+ Promotion for the rights of abortion are not considered eugenics.
121
+
122
+ 5. Advocating for the removal of rights or legal protections from a
123
+ class or group of people.
124
+
125
+ Former fascists: People or organizations who used to promote the
126
+ political ideology of fascism but no longer do so must meet the
127
+ following criterea to be able to use this software.
128
+
129
+ 1. Publicly disavow past fascist deeds and ideologies.
130
+
131
+ 2. Expose any and all known fascists former allies to the public.
132
+
133
+ A suggested route would be through the one peoples project
134
+ (onepeoplesproject.com). If they can confirm you have done so that
135
+ will count as meeting condition two.
136
+
137
+ 3. Publicly destroy any and all fascist paraphenelia you have in your
138
+ posession including removal of tattoos and body markings
139
+ affiliated with fascist groups or gangs.
140
+
141
+ ANTI-FASCIST-MIT LICENSE:
142
+
143
+ Permission is hereby granted, free of charge, to any person obtaining a
144
+ copy of this software and associated documentation files (the
145
+ "Software"), to deal in the Software without restriction, including
146
+ without limitation the rights to use, copy, modify, merge, publish,
147
+ distribute, sublicense, and/or sell copies of the Software, and to
148
+ permit persons to whom the Software is furnished to do so, subject to
149
+ the following conditions:
150
+
151
+ The above copyright notice and this permission notice shall be included
152
+ in all copies or substantial portions of the Software.
153
+
154
+ The above licence agreement conditions are met in full.
155
+
156
+ The Anti-Fascist MIT License may only be used under the terms of the
157
+ Anti-Fascist MIT License.
158
+
159
+ Any modified versions of this software must also include the
160
+ Anti-Fascist MIT Licence.
161
+
162
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
163
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
164
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
165
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
166
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
167
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
168
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,176 @@
1
+ # imagen-jekyll-theme
2
+
3
+ ## Configuración OAuth
4
+
5
+ Para configurar el logeo con Google, hay que generar una ID y un secreto de Google [siguiendo estas instrucciones](https://developers.google.com/identity/oauth2/web/guides/get-google-api-clientid). Al crearlo, te debería quedar así:
6
+
7
+ ![](./_docs/screenshot%20oauth%20google.png)
8
+
9
+ Después, hay que pegar las credenciales en el panel de administración de Pocketbase (`https://pocketbase.example.com/_/`):
10
+
11
+ ![](./_docs/screenshot%20oauth%20pocketbase.png)
12
+
13
+ # sutty-base-jekyll-theme
14
+
15
+ CAMBIAME: Esta es una plantilla base para comenzar cualquier plantilla
16
+ relacionada con Sutty, con el entorno de desarrollo que usamos según
17
+ nuestro flujo de trabajo.
18
+
19
+ ```bash
20
+ # Desde el directorio de trabajo
21
+ cd ~/Sutty
22
+ # Instalar sutty-cli antes de empezar
23
+ gem install sutty-cli
24
+ # Iniciar una plantilla
25
+ sutty-cli theme CAMBIAME
26
+ # Se creó el repositorio
27
+ cd CAMBIAME-jekyll-theme
28
+ ```
29
+
30
+ Para empezar, hay que buscar y reemplazar en todos los archivos donde
31
+ diga `CAMBIAME`.
32
+
33
+ También hay que instalar
34
+ [sutty.local](https://0xacab.org/sutty/sutty.local/):
35
+
36
+ ```bash
37
+ # Desde el directorio de trabajo
38
+ cd ~/Sutty
39
+ # Clonar el repositorio
40
+ git clone https://0xacab.org/sutty/sutty.local.git
41
+ cd sutty.local
42
+ make all domain domain=sutty.local
43
+ cd .. # Volver al directorio de trabajo
44
+ ```
45
+
46
+ Esto genera un certificado a nivel local que luego va a usar el
47
+ servidor de desarrollo.
48
+
49
+ ## Desarrollo
50
+
51
+ Siempre trabajamos desde el directorio raíz del repositorio:
52
+
53
+ ```bash
54
+ cd ~/Sutty/CAMBIAME-jekyll-theme
55
+ ```
56
+
57
+ Primero hay que iniciar los servidores, antes hay que instalar el
58
+ paquete `nghttp2`.
59
+
60
+ ```bash
61
+ make serve
62
+ ```
63
+
64
+ A partir de este momento podemos editar los archivos. Para probar lo
65
+ que estamos haciendo, compilamos el sitio.
66
+
67
+ ```bash
68
+ make build
69
+ ```
70
+
71
+ Hay que hacer esto cada vez que queremos probar cambios.
72
+
73
+ **Nota:** No usamos `jekyll serve` porque entra en conflicto con algunos
74
+ de nuestros complementos y los sitios grandes tardan en compilarse de
75
+ todas formas.
76
+
77
+ ## Actualizar
78
+
79
+ Podemos traer cambios de la base:
80
+
81
+ ```bash
82
+ git pull upstream master
83
+ ```
84
+
85
+ Si hubiera conflictos, los podemos resolver con:
86
+
87
+ ```bash
88
+ # Esto se hace una sola vez, cambiar vimdiff por la herramienta que
89
+ # queramos usar
90
+ git config --global mergetool.tool vimdiff
91
+ git config --global mergetool.keepBackup false
92
+
93
+ # Resolver los conflictos
94
+ git mergetool
95
+ ```
96
+
97
+ ## Publicación
98
+
99
+ Para publicar la plantilla, primero hay que cambiar el nombre al archivo
100
+ `sutty-base-jekyll-theme.gemspec`:
101
+
102
+ ```bash
103
+ git mv {sutty-base,CAMBIAME}-jekyll-theme.gemspec
104
+ ```
105
+
106
+ Cada vez que actualicemos la gema hay que editar
107
+ `CAMBIAME-jekyll-theme.gemspec` para cambiar la versión.
108
+
109
+ Y luego para compilar y publicar la gema:
110
+
111
+ ```bash
112
+ gem build CAMBIAME-jekyll-theme.gemspec
113
+ gem push CAMBIAME-VERSION.gemspec
114
+ ```
115
+
116
+ También hay que actualizar la versión en el
117
+ [skel](https://0xacab.org/sutty/skel.sutty.nl/).
118
+
119
+
120
+ ## Installation
121
+
122
+ Add this line to your Jekyll site's `Gemfile`:
123
+
124
+ ```ruby
125
+ gem "CAMBIAME-jekyll-theme"
126
+ ```
127
+
128
+ And add this line to your Jekyll site's `_config.yml`:
129
+
130
+ ```yaml
131
+ theme: CAMBIAME-jekyll-theme
132
+ ```
133
+
134
+ And then execute:
135
+
136
+ $ bundle
137
+
138
+ Or install it yourself as:
139
+
140
+ $ gem install CAMBIAME-jekyll-theme
141
+
142
+ ## Usage
143
+
144
+ CAMBIAME
145
+
146
+ ## Contributing
147
+
148
+ Bug reports and pull requests are welcome on 0xacab.org at
149
+ https://0xacab.org/sutty/jekyll/CAMBIAME-jekyll-theme. This project is
150
+ intended to be a safe, welcoming space for collaboration, and
151
+ contributors are expected to adhere to the [Sutty's code of
152
+ conduct](http://sutty.nl/en/code-of-conduct).
153
+
154
+ ## Development
155
+
156
+ To set up your environment to develop this theme, run `bundle install`.
157
+
158
+ Your theme is setup just like a normal Jekyll site! To test your theme,
159
+ run `bundle exec jekyll serve` and open your browser at
160
+ `http://localhost:4000`. This starts a Jekyll server using your
161
+ theme. Add pages, documents, data, etc. like normal to test your theme's
162
+ contents. As you make modifications to your theme and to your content,
163
+ your site will regenerate and you should see the changes in the browser
164
+ after a refresh, just like normal.
165
+
166
+ When your theme is released, only the files in `_layouts`, `_includes`,
167
+ `_sass` and `assets` tracked with Git will be bundled.
168
+
169
+ To add a custom directory to your theme-gem, please edit the array in
170
+ `CAMBIAME-jekyll-theme.gemspec` accordingly.
171
+
172
+ ## License
173
+
174
+ The theme is available as open source under the terms of the [Antifacist
175
+ MIT License](LICENSE.txt).
176
+
data/_config.yml ADDED
@@ -0,0 +1,47 @@
1
+ ---
2
+ plugins:
3
+ - jekyll-hardlinks
4
+ - jekyll-drafts-as-metadata
5
+ - jekyll-locales
6
+ - jekyll-ignore-layouts
7
+ - jekyll-relative-urls
8
+ - jekyll-dotenv
9
+ - jekyll-include-cache
10
+ - jekyll-linked-posts
11
+ - jekyll-commonmark
12
+ - jekyll-feed
13
+ - jekyll-order
14
+ - jekyll-data
15
+ - jekyll-seo-tag
16
+ - jekyll-images
17
+ - jekyll-embed-urls
18
+ - sutty-liquid
19
+ - jekyll-gzip
20
+ - jekyll-brotli
21
+ markdown: CommonMark
22
+ commonmark:
23
+ options:
24
+ - SMART
25
+ - FOOTNOTES
26
+ - UNSAFE
27
+ extensions:
28
+ - strikethrough
29
+ - autolink
30
+ - table
31
+ sass:
32
+ load_paths:
33
+ - node_modules
34
+ permalink: ":title/"
35
+ liquid:
36
+ strict_filters: true
37
+ locales:
38
+ - es
39
+ ignored_layouts:
40
+ - menu
41
+ - email
42
+ images:
43
+ interlaced: true
44
+ description: Intervención Multimedial de Análisis en Gabinetes Extendidos Navegables
45
+ title: IMAGEN testing
46
+ url: https://imagen.testing.sutty.nl
47
+ hostname: imagen.testing.sutty.nl
@@ -0,0 +1,18 @@
1
+ ---
2
+ - "content"
3
+ - "font_sizes"
4
+ - "letter_spacing"
5
+ - "colors"
6
+ - "picture"
7
+ - "embed_responsive"
8
+ - "button_with_link"
9
+ - "button_with_copy"
10
+ - "buttons"
11
+ - "blue_button"
12
+ - "descriptor"
13
+ - "subir_imagen"
14
+ - "imagen_grilla"
15
+ - "grilla"
16
+ - "question"
17
+ - "imagen_enviada"
18
+ - "imagen_enviada_error"
data/_data/en.yml ADDED
@@ -0,0 +1,109 @@
1
+ ---
2
+ locale: 'English'
3
+ date:
4
+ format: '%m/%d/%Y'
5
+ published_at: "Published at"
6
+ last_modified_at: "Last modification"
7
+ abbr_day_names:
8
+ - Mon
9
+ - Tue
10
+ - Wed
11
+ - Thu
12
+ - Fri
13
+ - Sat
14
+ - Sun
15
+ day_names:
16
+ - Monday
17
+ - Tuesday
18
+ - Wednesday
19
+ - Thursday
20
+ - Friday
21
+ - Saturday
22
+ - Sunday
23
+ abbr_month_names:
24
+ - Jan
25
+ - Feb
26
+ - Mar
27
+ - Apr
28
+ - May
29
+ - Jun
30
+ - Jul
31
+ - Aug
32
+ - Sep
33
+ - Oct
34
+ - Nov
35
+ - Dec
36
+ month_names:
37
+ - January
38
+ - February
39
+ - March
40
+ - April
41
+ - May
42
+ - June
43
+ - July
44
+ - August
45
+ - September
46
+ - October
47
+ - November
48
+ - December
49
+ time:
50
+ am: am
51
+ pm: pm
52
+ layouts:
53
+ about: "About this site"
54
+ code_of_conduct: "Code of conduct"
55
+ license: "License"
56
+ menu: "Menu"
57
+ post: "Article"
58
+ privacy_policy: "Privacy policy"
59
+ theme: "Customize theme"
60
+ menu:
61
+ title: Menu
62
+ share:
63
+ text: Share
64
+ icon: share-alt
65
+ items:
66
+ - title: Twitter
67
+ url: "https://twitter.com/intent/tweet?url=%url&amp;text=%title%0A%0A%description&amp;hashtags=%tags"
68
+ icon: twitter
69
+ - title: Facebook
70
+ url: "https://www.facebook.com/sharer/sharer.php?u=%url&amp;t=%title%0A%0A%description"
71
+ icon: facebook
72
+ - title: Whatsapp
73
+ url: "https://api.whatsapp.com/send?text=%title%0A%0A%description%0A%0A%url"
74
+ icon: whatsapp
75
+ - title: Telegram
76
+ url: "https://t.me/share/url?url=%url&amp;text=%title%0A%0A%description"
77
+ icon: telegram
78
+ - title: Tumblr
79
+ url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&amp;title=%title&amp;caption=%description&amp;tags=%tags"
80
+ icon: tumblr
81
+ - title: Reddit
82
+ url: "https://reddit.com/submit?url=%url&amp;title=%tags%20-%20%title"
83
+ icon: reddit
84
+ - title: E-mail
85
+ url: "mailto:?subject=%title&amp;body=%description%0A%0A%url"
86
+ icon: envelope
87
+ - title: Fediverse
88
+ url: "https://fediverse.sutty.nl/en/?u=%url&amp;t=%title&amp;d=%description%20%tags"
89
+ icon: mastodon
90
+ credits: "Made by [Sutty](https://sutty.nl/en/)."
91
+ accessibility:
92
+ skip_to_content: Skip to content
93
+ device_detector:
94
+ outline: Outline
95
+ get_help: Help
96
+ help: |
97
+ If you find an issue, please take a screenshot including this
98
+ information. It helps us fix them.
99
+
100
+ Once the site is published, we'll remove this section.
101
+
102
+ Click the same button to close this message.
103
+ button_copy:
104
+ confirmation: "%s copied"
105
+ create_marker: Create Marker
106
+ upload_image: Upload image
107
+ help: Help
108
+ images: See all images
109
+ student: ¡Hi elio!
data/_data/es.yml ADDED
@@ -0,0 +1,162 @@
1
+ ---
2
+ locale: Castellano
3
+ date:
4
+ format: '%d/%m/%Y'
5
+ published_at: "Publicado en"
6
+ last_modified_at: "Última modificación"
7
+ abbr_day_names:
8
+ - Lun
9
+ - Mar
10
+ - Mié
11
+ - Jue
12
+ - Vie
13
+ - Sáb
14
+ - Dom
15
+ day_names:
16
+ - Lunes
17
+ - Martes
18
+ - Miércoles
19
+ - Jueves
20
+ - Viernes
21
+ - Sábado
22
+ - Domingo
23
+ abbr_month_names:
24
+ - Ene
25
+ - Feb
26
+ - Mar
27
+ - Abr
28
+ - May
29
+ - Jun
30
+ - Jul
31
+ - Ago
32
+ - Sep
33
+ - Oct
34
+ - Nov
35
+ - Dic
36
+ month_names:
37
+ - Enero
38
+ - Febrero
39
+ - Marzo
40
+ - Abril
41
+ - Mayo
42
+ - Junio
43
+ - Julio
44
+ - Agosto
45
+ - Septiembre
46
+ - Octubre
47
+ - Noviembre
48
+ - Diciembre
49
+ time:
50
+ am: am
51
+ pm: pm
52
+ layouts:
53
+ about: "Información del sitio"
54
+ code_of_conduct: "Código de conducta"
55
+ license: "Licencia"
56
+ menu: "Menú"
57
+ post: "Artículo"
58
+ privacy_policy: "Política de privacidad"
59
+ theme: "Personalizar plantilla"
60
+ menu:
61
+ title: Menú
62
+ share:
63
+ text: Compartir
64
+ icon: share-alt
65
+ items:
66
+ - title: Twitter
67
+ url: "https://twitter.com/intent/tweet?url=%url&amp;text=%title%0A%0A%description&amp;hashtags=%tags"
68
+ icon: twitter
69
+ - title: Facebook
70
+ url: "https://www.facebook.com/sharer/sharer.php?u=%url&amp;t=%title%0A%0A%description"
71
+ icon: facebook
72
+ - title: Whatsapp
73
+ url: "https://api.whatsapp.com/send?text=%title%0A%0A%description%0A%0A%url"
74
+ icon: whatsapp
75
+ - title: Telegram
76
+ url: "https://t.me/share/url?url=%url&amp;text=%title%0A%0A%description"
77
+ icon: telegram
78
+ - title: Tumblr
79
+ url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&amp;title=%title&amp;caption=%description&amp;tags=%tags"
80
+ icon: tumblr
81
+ - title: Reddit
82
+ url: "https://reddit.com/submit?url=%url&amp;title=%tags%20-%20%title"
83
+ icon: reddit
84
+ - title: Correo
85
+ url: "mailto:?subject=%title&amp;body=%description%0A%0A%url"
86
+ icon: envelope
87
+ - title: Fediverso
88
+ url: "https://fediverse.sutty.nl/es/?u=%url&amp;t=%title&amp;d=%description%20%tags"
89
+ icon: mastodon
90
+ credits: "Hecho por [Sutty](https://sutty.nl/)"
91
+ accessibility:
92
+ skip_to_content: Saltar al contenido
93
+ device_detector:
94
+ outline: Bordes
95
+ get_help: Ayuda
96
+ help: |
97
+ Si encuentras un problema, por favor toma una captura de pantalla
98
+ con esta información visible. Nos ayuda a resolverlos.
99
+
100
+ Una vez publiquemos el sitio, eliminaremos este recuadro.
101
+
102
+ Usa el mismo botón para cerrar este mensaje.
103
+ button_copy:
104
+ confirmation: "%s copiado"
105
+ create_marker: Crear Marcador
106
+ de: "De:"
107
+ titulo: "Título:"
108
+ descripcion: "Descripción:"
109
+ subir_imagen: "Subir una imagen"
110
+ descripcion_subir_imagen: "Completá la siguiente información para poder subir una imagen de microscopio:"
111
+ upload_image: Subir una imagen
112
+ help: Ayuda
113
+ images: Ver todas las imagenes
114
+ student: ¡Hola elio!
115
+ question_1:
116
+ title: "¿Cómo subir una imagen?"
117
+ content: |
118
+ Para subir una imagen podés presionar en el botón del menu
119
+ llamado "subir una imagen".
120
+ question_2:
121
+ title: "¿Cómo ver imagenes subidas?"
122
+ content: |
123
+ Para encontrar tus imagenes y la de tus companeros podés presionar
124
+ en el botón del menu "ver las imagenes del curso"
125
+ question_3:
126
+ title: "¿Cómo ver y crear marcadores?"
127
+ content: |
128
+ Para ver y crear marcadores, primero tenés que entrar en
129
+ "Ver las imagenes del curso". Luego, presionar la imagen a la que
130
+ le quieras agregar los marcadores y apretar el botón que dice "crear
131
+ marcador" ubicado en la parte inferior derecha de la imagen.
132
+ imagen_enviada: "Imagen enviada correctamente"
133
+ imagen_enviada_error: "No fue posible subir la imagen"
134
+ image:
135
+ title: "Ver imagen"
136
+ content: |
137
+ Podés interactuar con la imagen haciendo zoom, viendo y creando
138
+ marcadores y leyendo la información. Si mantenés presionado un
139
+ marcador lo podés mover.
140
+ imagenes_actividad: "Imágenes de la actividad"
141
+ descripcion_imagenes_actividad: "Encontrá tu imagen y la de tus compañeres. Si seleccionás una de las imágenes podés ver y crear marcadores."
142
+ subir_nuevamente: "Subir nuevamente"
143
+ institucional:
144
+ title: "Institucional"
145
+ items:
146
+ - title: 'CNBA'
147
+ url: 'https://cnba.uba.ar/'
148
+ src: 'public/nacional.png'
149
+ - title: 'UBA'
150
+ url: 'https://uba.ar/'
151
+ src: 'public/uba.png'
152
+ - title: 'CITEP'
153
+ url: 'https://campus.citep.rec.uba.ar/'
154
+ src: 'public/citep.png'
155
+ - title: 'SUTTY'
156
+ url: 'https://sutty.coop.ar/'
157
+ src: 'public/sutty.png'
158
+ iniciar_sesion:
159
+ title: "Iniciar Sesión"
160
+ requerido: "* Se necesita una cuenta de Gmail para Iniciar Sesión"
161
+ close: "Cerrar sesión"
162
+ home: "Volver al inicio"