sutty-portfolio-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 (153) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +168 -0
  3. data/README.md +164 -0
  4. data/_config.yml +79 -0
  5. data/_data/components.yml +10 -0
  6. data/_data/en.yml +110 -0
  7. data/_data/es.yml +110 -0
  8. data/_data/full_width_components.yml +2 -0
  9. data/_data/layouts/artwork.yml +172 -0
  10. data/_data/layouts/audio.yml +61 -0
  11. data/_data/layouts/bio.yml +111 -0
  12. data/_data/layouts/category.yml +44 -0
  13. data/_data/layouts/code_of_conduct.yml +62 -0
  14. data/_data/layouts/contact.yml +74 -0
  15. data/_data/layouts/event.yml +99 -0
  16. data/_data/layouts/license.yml +62 -0
  17. data/_data/layouts/menu.yml +80 -0
  18. data/_data/layouts/news.yml +36 -0
  19. data/_data/layouts/post.yml +102 -0
  20. data/_data/layouts/privacy_policy.yml +62 -0
  21. data/_data/layouts/theme.yml +336 -0
  22. data/_data/layouts/works.yml +36 -0
  23. data/_data/manifest.json +1277 -0
  24. data/_data/schema.yml +16 -0
  25. data/_data/theme.yml +150 -0
  26. data/_includes/boolean.html +38 -0
  27. data/_includes/buttons/button.html +9 -0
  28. data/_includes/buttons/copy.html +28 -0
  29. data/_includes/buttons/generic.html +15 -0
  30. data/_includes/buttons/link.html +14 -0
  31. data/_includes/cards/card.html +39 -0
  32. data/_includes/contact.html +17 -0
  33. data/_includes/content.html +9 -0
  34. data/_includes/device_detector.html +30 -0
  35. data/_includes/email.html +9 -0
  36. data/_includes/embed_responsive.html +16 -0
  37. data/_includes/file.html +43 -0
  38. data/_includes/floating_alert.html +6 -0
  39. data/_includes/footer.html +5 -0
  40. data/_includes/form/boolean.html +1 -0
  41. data/_includes/form/content.html +1 -0
  42. data/_includes/form/email.html +1 -0
  43. data/_includes/form/file.html +1 -0
  44. data/_includes/form/hidden.html +1 -0
  45. data/_includes/form/image.html +1 -0
  46. data/_includes/form/input.html +1 -0
  47. data/_includes/form/markdown_content.html +1 -0
  48. data/_includes/form/number.html +1 -0
  49. data/_includes/form/predefined_array.html +1 -0
  50. data/_includes/form/section.html +1 -0
  51. data/_includes/form/separator.html +1 -0
  52. data/_includes/form/string.html +1 -0
  53. data/_includes/form/submit.html +1 -0
  54. data/_includes/form/tel.html +1 -0
  55. data/_includes/form/text.html +1 -0
  56. data/_includes/form/url.html +1 -0
  57. data/_includes/headings/generic.html +14 -0
  58. data/_includes/headings/h1.html +9 -0
  59. data/_includes/headings/h2.html +9 -0
  60. data/_includes/headings/h3.html +9 -0
  61. data/_includes/headings/with_link.html +15 -0
  62. data/_includes/hidden.html +5 -0
  63. data/_includes/image.html +40 -0
  64. data/_includes/images_artwork.html +36 -0
  65. data/_includes/input.html +60 -0
  66. data/_includes/item.html +14 -0
  67. data/_includes/language.html +55 -0
  68. data/_includes/markdown_content.html +9 -0
  69. data/_includes/menu.html +144 -0
  70. data/_includes/notification.html +5 -0
  71. data/_includes/number.html +9 -0
  72. data/_includes/pack.html +10 -0
  73. data/_includes/password.html +10 -0
  74. data/_includes/picture.html +25 -0
  75. data/_includes/player/card_player.html +34 -0
  76. data/_includes/player/player.html +63 -0
  77. data/_includes/predefined_array.html +47 -0
  78. data/_includes/preload_font.html +1 -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/separator.html +1 -0
  83. data/_includes/share.html +22 -0
  84. data/_includes/share_box.html +31 -0
  85. data/_includes/stretched_link.html +16 -0
  86. data/_includes/string.html +12 -0
  87. data/_includes/submit.html +13 -0
  88. data/_includes/svg/copy-icon.svg +1 -0
  89. data/_includes/svg/done-icon.svg +1 -0
  90. data/_includes/svg/menu.svg +8 -0
  91. data/_includes/svg/x.svg +3 -0
  92. data/_includes/tel.html +9 -0
  93. data/_includes/text.html +40 -0
  94. data/_includes/theme/button_with_copy.html +1 -0
  95. data/_includes/theme/button_with_link.html +5 -0
  96. data/_includes/theme/buttons.html +33 -0
  97. data/_includes/theme/colors.html +14 -0
  98. data/_includes/theme/content.html +41 -0
  99. data/_includes/theme/embed_responsive.html +10 -0
  100. data/_includes/theme/font_sizes.html +18 -0
  101. data/_includes/theme/footer.html +1 -0
  102. data/_includes/theme/letter_spacing.html +3 -0
  103. data/_includes/theme/picture.html +5 -0
  104. data/_includes/toggler.html +19 -0
  105. data/_includes/toggler_label.html +22 -0
  106. data/_includes/toggler_related.html +24 -0
  107. data/_includes/url.html +9 -0
  108. data/_layouts/artwork.html +88 -0
  109. data/_layouts/bio.html +35 -0
  110. data/_layouts/category.html +19 -0
  111. data/_layouts/code_of_conduct.html +45 -0
  112. data/_layouts/contact.html +51 -0
  113. data/_layouts/default.html +66 -0
  114. data/_layouts/event.html +42 -0
  115. data/_layouts/home.html +55 -0
  116. data/_layouts/license.html +45 -0
  117. data/_layouts/news.html +39 -0
  118. data/_layouts/page.html +5 -0
  119. data/_layouts/privacy_policy.html +45 -0
  120. data/_layouts/tag.html +70 -0
  121. data/_layouts/theme.html +60 -0
  122. data/_layouts/works.html +31 -0
  123. data/_sass/accessibility.scss +46 -0
  124. data/_sass/content.scss +28 -0
  125. data/_sass/details.scss +28 -0
  126. data/_sass/editor.scss +17 -0
  127. data/_sass/embed.scss +13 -0
  128. data/_sass/floating_alert.scss +48 -0
  129. data/_sass/fonts.scss +29 -0
  130. data/_sass/golos_text.scss +6 -0
  131. data/_sass/gotic.scss +7 -0
  132. data/_sass/karla.scss +6 -0
  133. data/_sass/menu.scss +36 -0
  134. data/_sass/player.scss +80 -0
  135. data/_sass/share_box.scss +26 -0
  136. data/_sass/snap.scss +60 -0
  137. data/_sass/toggler.scss +20 -0
  138. data/_sass/utilities.scss +525 -0
  139. data/assets/css/styles.scss +81 -0
  140. data/assets/data/site.json +10 -0
  141. data/assets/fonts/forkawesome-webfont.woff2 +0 -0
  142. data/assets/fonts/golostext/v4/GolosText-VariableFont_wght.woff2 +0 -0
  143. data/assets/fonts/gotic/gotic.woff +0 -0
  144. data/assets/fonts/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFA.woff2 +0 -0
  145. data/assets/fonts/roboto/v27/KFOjCnqEu92Fr1Mu51TzBhc9-subset.woff2 +0 -0
  146. data/assets/fonts/roboto/v27/KFOkCnqEu92Fr1MmgWxP-subset.woff2 +0 -0
  147. data/assets/fonts/roboto/v27/KFOkCnqEu92Fr1Mu52xP-subset.woff2 +0 -0
  148. data/assets/fonts/roboto/v27/KFOlCnqEu92Fr1MmWUlvAw-subset.woff2 +0 -0
  149. data/assets/fonts/roboto/v27/KFOmCnqEu92Fr1Me5Q-subset.woff2 +0 -0
  150. data/assets/js/env.js +8 -0
  151. data/assets/js/pack.ZCIXSVH6.js +40 -0
  152. data/assets/js/pack.ZCIXSVH6.js.map +7 -0
  153. metadata +518 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e688c0bb4676d93dde3fdb843966b2394ab676dbc9a18ae66e4132815576ca3d
4
+ data.tar.gz: f1d43eccf1539f83e95f59465d0dbc8e301e22e1c90a60d0ba525b27e421697c
5
+ SHA512:
6
+ metadata.gz: b70e56cbcdda6ccf868a4cc9f6a8e0c64dfc0f7dea464c2e321dc7eaddd2213a8876623985156bed251c6fd61c857fac9bdab7d2e7c2986221c009b96a5f415b
7
+ data.tar.gz: a38dc1c3450bee9a504307c548e593790420fd04dd0ebb29545ebf44eb98321e2fa181db710cf7b1d203f17ad10de47021e8e3de1178eb8d8b254fb2c5df0f7e
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,164 @@
1
+ # sutty-base-jekyll-theme
2
+
3
+ CAMBIAME: Esta es una plantilla base para comenzar cualquier plantilla
4
+ relacionada con Sutty, con el entorno de desarrollo que usamos según
5
+ nuestro flujo de trabajo.
6
+
7
+ ```bash
8
+ # Desde el directorio de trabajo
9
+ cd ~/Sutty
10
+ # Instalar sutty-cli antes de empezar
11
+ gem install sutty-cli
12
+ # Iniciar una plantilla
13
+ sutty-cli theme CAMBIAME
14
+ # Se creó el repositorio
15
+ cd CAMBIAME-jekyll-theme
16
+ ```
17
+
18
+ Para empezar, hay que buscar y reemplazar en todos los archivos donde
19
+ diga `CAMBIAME`.
20
+
21
+ También hay que instalar
22
+ [sutty.local](https://0xacab.org/sutty/sutty.local/):
23
+
24
+ ```bash
25
+ # Desde el directorio de trabajo
26
+ cd ~/Sutty
27
+ # Clonar el repositorio
28
+ git clone https://0xacab.org/sutty/sutty.local.git
29
+ cd sutty.local
30
+ make all domain domain=sutty.local
31
+ cd .. # Volver al directorio de trabajo
32
+ ```
33
+
34
+ Esto genera un certificado a nivel local que luego va a usar el
35
+ servidor de desarrollo.
36
+
37
+ ## Desarrollo
38
+
39
+ Siempre trabajamos desde el directorio raíz del repositorio:
40
+
41
+ ```bash
42
+ cd ~/Sutty/CAMBIAME-jekyll-theme
43
+ ```
44
+
45
+ Primero hay que iniciar los servidores, antes hay que instalar el
46
+ paquete `nghttp2`.
47
+
48
+ ```bash
49
+ make serve
50
+ ```
51
+
52
+ A partir de este momento podemos editar los archivos. Para probar lo
53
+ que estamos haciendo, compilamos el sitio.
54
+
55
+ ```bash
56
+ make build
57
+ ```
58
+
59
+ Hay que hacer esto cada vez que queremos probar cambios.
60
+
61
+ **Nota:** No usamos `jekyll serve` porque entra en conflicto con algunos
62
+ de nuestros complementos y los sitios grandes tardan en compilarse de
63
+ todas formas.
64
+
65
+ ## Actualizar
66
+
67
+ Podemos traer cambios de la base:
68
+
69
+ ```bash
70
+ git pull upstream master
71
+ ```
72
+
73
+ Si hubiera conflictos, los podemos resolver con:
74
+
75
+ ```bash
76
+ # Esto se hace una sola vez, cambiar vimdiff por la herramienta que
77
+ # queramos usar
78
+ git config --global mergetool.tool vimdiff
79
+ git config --global mergetool.keepBackup false
80
+
81
+ # Resolver los conflictos
82
+ git mergetool
83
+ ```
84
+
85
+ ## Publicación
86
+
87
+ Para publicar la plantilla, primero hay que cambiar el nombre al archivo
88
+ `sutty-base-jekyll-theme.gemspec`:
89
+
90
+ ```bash
91
+ git mv {sutty-base,CAMBIAME}-jekyll-theme.gemspec
92
+ ```
93
+
94
+ Cada vez que actualicemos la gema hay que editar
95
+ `CAMBIAME-jekyll-theme.gemspec` para cambiar la versión.
96
+
97
+ Y luego para compilar y publicar la gema:
98
+
99
+ ```bash
100
+ gem build CAMBIAME-jekyll-theme.gemspec
101
+ gem push CAMBIAME-VERSION.gemspec
102
+ ```
103
+
104
+ También hay que actualizar la versión en el
105
+ [skel](https://0xacab.org/sutty/skel.sutty.nl/).
106
+
107
+
108
+ ## Installation
109
+
110
+ Add this line to your Jekyll site's `Gemfile`:
111
+
112
+ ```ruby
113
+ gem "CAMBIAME-jekyll-theme"
114
+ ```
115
+
116
+ And add this line to your Jekyll site's `_config.yml`:
117
+
118
+ ```yaml
119
+ theme: CAMBIAME-jekyll-theme
120
+ ```
121
+
122
+ And then execute:
123
+
124
+ $ bundle
125
+
126
+ Or install it yourself as:
127
+
128
+ $ gem install CAMBIAME-jekyll-theme
129
+
130
+ ## Usage
131
+
132
+ CAMBIAME
133
+
134
+ ## Contributing
135
+
136
+ Bug reports and pull requests are welcome on 0xacab.org at
137
+ https://0xacab.org/sutty/jekyll/CAMBIAME-jekyll-theme. This project is
138
+ intended to be a safe, welcoming space for collaboration, and
139
+ contributors are expected to adhere to the [Sutty's code of
140
+ conduct](http://sutty.nl/en/code-of-conduct).
141
+
142
+ ## Development
143
+
144
+ To set up your environment to develop this theme, run `bundle install`.
145
+
146
+ Your theme is setup just like a normal Jekyll site! To test your theme,
147
+ run `bundle exec jekyll serve` and open your browser at
148
+ `http://localhost:4000`. This starts a Jekyll server using your
149
+ theme. Add pages, documents, data, etc. like normal to test your theme's
150
+ contents. As you make modifications to your theme and to your content,
151
+ your site will regenerate and you should see the changes in the browser
152
+ after a refresh, just like normal.
153
+
154
+ When your theme is released, only the files in `_layouts`, `_includes`,
155
+ `_sass` and `assets` tracked with Git will be bundled.
156
+
157
+ To add a custom directory to your theme-gem, please edit the array in
158
+ `CAMBIAME-jekyll-theme.gemspec` accordingly.
159
+
160
+ ## License
161
+
162
+ The theme is available as open source under the terms of the [Antifacist
163
+ MIT License](LICENSE.txt).
164
+
data/_config.yml ADDED
@@ -0,0 +1,79 @@
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
+ - audio
43
+ images:
44
+ interlaced: true
45
+ description: Sitio de portfolio
46
+ title: portfolio testing
47
+ url: https://portfolio.sutty.nl
48
+ hostname: portfolio.sutty.nl
49
+ name: portfolio.testing
50
+ embed:
51
+ scrub:
52
+ - form
53
+ - input
54
+ - textarea
55
+ - button
56
+ - fieldset
57
+ - select
58
+ - option
59
+ - optgroup
60
+ - canvas
61
+ - area
62
+ - map
63
+ attributes:
64
+ referrerpolicy: strict-origin-when-cross-origin
65
+ sandbox:
66
+ - allow-scripts
67
+ - allow-popups
68
+ allow:
69
+ - fullscreen;
70
+ - gyroscope;
71
+ - picture-in-picture;
72
+ - clipboard-write;
73
+ loading: lazy
74
+ controls: true
75
+ rel:
76
+ - noopener
77
+ - noreferrer
78
+ target: _blank
79
+
@@ -0,0 +1,10 @@
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"
data/_data/en.yml ADDED
@@ -0,0 +1,110 @@
1
+ ---
2
+ locale: 'En'
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
+ Bio: "Bio"
54
+ category: "Category"
55
+ artwork: "Artwork"
56
+ event: "Event"
57
+ about: "About this site"
58
+ code_of_conduct: "Code of conduct"
59
+ license: "License"
60
+ menu: "Menu"
61
+ post: "Article"
62
+ privacy_policy: "Privacy policy"
63
+ theme: "Customize theme"
64
+ menu:
65
+ title: Menu
66
+ share:
67
+ text: Share
68
+ icon: share-alt
69
+ items:
70
+ - title: Twitter
71
+ url: "https://twitter.com/intent/tweet?url=%url&amp;text=%title%0A%0A%description&amp;hashtags=%tags"
72
+ icon: twitter
73
+ - title: Facebook
74
+ url: "https://www.facebook.com/sharer/sharer.php?u=%url&amp;t=%title%0A%0A%description"
75
+ icon: facebook
76
+ - title: Whatsapp
77
+ url: "https://api.whatsapp.com/send?text=%title%0A%0A%description%0A%0A%url"
78
+ icon: whatsapp
79
+ - title: Telegram
80
+ url: "https://t.me/share/url?url=%url&amp;text=%title%0A%0A%description"
81
+ icon: telegram
82
+ - title: Tumblr
83
+ url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&amp;title=%title&amp;caption=%description&amp;tags=%tags"
84
+ icon: tumblr
85
+ - title: Reddit
86
+ url: "https://reddit.com/submit?url=%url&amp;title=%tags%20-%20%title"
87
+ icon: reddit
88
+ - title: E-mail
89
+ url: "mailto:?subject=%title&amp;body=%description%0A%0A%url"
90
+ icon: envelope
91
+ - title: Fediverse
92
+ url: "https://fediverse.sutty.nl/en/?u=%url&amp;t=%title&amp;d=%description%20%tags"
93
+ icon: mastodon
94
+ credits: "Made by [Sutty](https://sutty.nl/en/)."
95
+ accessibility:
96
+ skip_to_content: Skip to content
97
+ device_detector:
98
+ outline: Outline
99
+ get_help: Help
100
+ help: |
101
+ If you find an issue, please take a screenshot including this
102
+ information. It helps us fix them.
103
+
104
+ Once the site is published, we'll remove this section.
105
+
106
+ Click the same button to close this message.
107
+ button_copy:
108
+ confirmation: "%s copied"
109
+ cv: 'Curriculum vitae'
110
+ link_title: 'LINK'
data/_data/es.yml ADDED
@@ -0,0 +1,110 @@
1
+ ---
2
+ locale: "Es"
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
+ contact: "Contacto"
54
+ category: "Categoria"
55
+ event: "Evento"
56
+ bio: "Bio"
57
+ artwork: "Trabajos"
58
+ code_of_conduct: "Código de conducta"
59
+ license: "Licencia"
60
+ menu: "Menú"
61
+ post: "Artículo"
62
+ privacy_policy: "Política de privacidad"
63
+ theme: "Personalizar"
64
+ menu:
65
+ title: Menú
66
+ share:
67
+ text: Compartir
68
+ icon: share-alt
69
+ items:
70
+ - title: Twitter
71
+ url: "https://twitter.com/intent/tweet?url=%url&amp;text=%title%0A%0A%description&amp;hashtags=%tags"
72
+ icon: twitter
73
+ - title: Facebook
74
+ url: "https://www.facebook.com/sharer/sharer.php?u=%url&amp;t=%title%0A%0A%description"
75
+ icon: facebook
76
+ - title: Whatsapp
77
+ url: "https://api.whatsapp.com/send?text=%title%0A%0A%description%0A%0A%url"
78
+ icon: whatsapp
79
+ - title: Telegram
80
+ url: "https://t.me/share/url?url=%url&amp;text=%title%0A%0A%description"
81
+ icon: telegram
82
+ - title: Tumblr
83
+ url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&amp;title=%title&amp;caption=%description&amp;tags=%tags"
84
+ icon: tumblr
85
+ - title: Reddit
86
+ url: "https://reddit.com/submit?url=%url&amp;title=%tags%20-%20%title"
87
+ icon: reddit
88
+ - title: Correo
89
+ url: "mailto:?subject=%title&amp;body=%description%0A%0A%url"
90
+ icon: envelope
91
+ - title: Fediverso
92
+ url: "https://fediverse.sutty.nl/es/?u=%url&amp;t=%title&amp;d=%description%20%tags"
93
+ icon: mastodon
94
+ credits: "Hecho con [Sutty](https://sutty.nl/)."
95
+ accessibility:
96
+ skip_to_content: Saltar al contenido
97
+ device_detector:
98
+ outline: Bordes
99
+ get_help: Ayuda
100
+ help: |
101
+ Si encuentras un problema, por favor toma una captura de pantalla
102
+ con esta información visible. Nos ayuda a resolverlos.
103
+
104
+ Una vez publiquemos el sitio, eliminaremos este recuadro.
105
+
106
+ Usa el mismo botón para cerrar este mensaje.
107
+ button_copy:
108
+ confirmation: "%s copiado"
109
+ cv: 'Curriculum vitae'
110
+ link_title: 'LINK'
@@ -0,0 +1,2 @@
1
+ ---
2
+ - footer