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
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="18px" viewBox="0 0 24 24" width="18px" fill="#ffffff"><path d="M0 0h24v24H0z" fill="none"/><path d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="18px" viewBox="0 0 24 24" width="18px" fill="#ffffff"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg fill="#000000" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
5
+ viewBox="0 0 395.71 395.71"
6
+ xml:space="preserve">
7
+ <g>
8
+ <path d="M197.849,0C122.131,0,60.531,61.609,60.531,137.329c0,72.887,124.591,243.177,129.896,250.388l4.951,6.738
9
+ c0.579,0.792,1.501,1.255,2.471,1.255c0.985,0,1.901-0.463,2.486-1.255l4.948-6.738c5.308-7.211,129.896-177.501,129.896-250.388
10
+ C335.179,61.609,273.569,0,197.849,0z M197.849,88.138c27.13,0,49.191,22.062,49.191,49.191c0,27.115-22.062,49.191-49.191,49.191
11
+ c-27.114,0-49.191-22.076-49.191-49.191C148.658,110.2,170.734,88.138,197.849,88.138z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg
2
+ class=""
3
+ viewBox="0 0 16 14"
4
+ xmlns="http://www.w3.org/2000/svg">
5
+ <line x1="1" y1="1" x2="15" y2="1" stroke="#155aa8" stroke-width="2" stroke-linecap="round"/>
6
+ <line x1="1" y1="6.81836" x2="15" y2="6.81836" stroke="#155aa8" stroke-width="2" stroke-linecap="round"/>
7
+ <line x1="1" y1="12.6362" x2="15" y2="12.6362" stroke="#155aa8" stroke-width="2" stroke-linecap="round"/>
8
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width=33 id="screenshot-0ac05513-ebf0-8010-8001-d071c5b2778b" fill="none" style="-webkit-print-color-adjust:exact" version="1.1" viewBox="0 0 33 30" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="shape-0ac05513-ebf0-8010-8001-d071c5b2778b" width="19" height="17" rx="0" ry="0" fill="#000">
3
+ <g class="fills">
4
+ <path rx="0" ry="0" d="m33 7.5v19.286c0 1.774-1.386 3.214-3.094 3.214h-26.812c-1.708 0-3.094-1.44-3.094-3.214v-19.286c0-1.775 1.386-3.214 3.094-3.214h5.672l0.792-2.203c0.452-1.253 1.605-2.083 2.894-2.083h8.089c1.289 0 2.443 0.83 2.894 2.083l0.799 2.203h5.672c1.708 0 3.094 1.439 3.094 3.214zm-8.766 9.643c0-4.433-3.467-8.036-7.734-8.036s-7.734 3.603-7.734 8.036 3.467 8.036 7.734 8.036 7.734-3.603 7.734-8.036zm-2.062 0c0 3.248-2.546 5.893-5.672 5.893s-5.672-2.645-5.672-5.893 2.546-5.893 5.672-5.893 5.672 2.645 5.672 5.893z" fill="#155aa8"/>
5
+ </g>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg version="1.1" viewBox="0 0 10.583 10.319" xmlns="http://www.w3.org/2000/svg">
2
+ <g transform="translate(-118.5 -159.55)">
3
+ <g class="fills" transform="matrix(.26458 0 0 .26458 118.5 159.55)" style="-webkit-print-color-adjust:exact">
4
+ <ellipse cx="20" cy="19.5" rx="20" ry="19.5" fill="#e4e4e4" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="round" stroke-width="2.2866" style="paint-order:markers stroke fill"/>
5
+ </g>
6
+ <g transform="matrix(.28406 0 0 .28406 118.65 158.69)" style="-webkit-print-color-adjust:exact">
7
+ <g class="text-container" x="14.000000013547606" y="7.0000000061179435" width="9.000000023601388" height="24.000000016759373" rx="0" ry="0">
8
+ <g class="fills">
9
+ <g dominant-baseline="ideographic" style="white-space:pre" aria-label="?">
10
+ <path d="m16.742 23.727q0-0.76 0.1371-1.3 0.15668-0.56 0.50922-1.06 0.37212-0.5 0.99885-1.04 0.76382-0.66 1.1751-1.1 0.43088-0.44 0.60714-0.86 0.17627-0.42 0.17627-1.02 0-0.96-0.60714-1.48t-1.7627-0.52q-0.95968 0-1.7039 0.26-0.74424 0.24-1.4297 0.58l-0.60714-1.4q0.78341-0.42 1.7235-0.7 0.95968-0.28 2.1348-0.28 1.8606 0 2.879 0.94t1.0184 2.56q0 0.9-0.29378 1.54-0.27419 0.62-0.803 1.16-0.50922 0.52-1.2143 1.12-0.64631 0.56-0.99885 0.98-0.33295 0.42-0.45046 0.84-0.11751 0.4-0.11751 0.98v0.34h-1.371zm-0.45046 3.48q0-0.74 0.33295-1.04 0.35253-0.3 0.88134-0.3 0.48963 0 0.84217 0.3t0.35254 1.04q0 0.72-0.35254 1.04-0.35253 0.32-0.84217 0.32-0.5288 0-0.88134-0.32-0.33295-0.32-0.33295-1.04z"/>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg class="{{ include.class }}" version="1.1" viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="m0.68919 9.8452e-4c-0.297 0.029008-0.54983 0.22834-0.64723 0.51044-0.09767 0.2821-0.021557 0.59507 0.19428 0.80107l5.1744 5.1864-5.1744 5.1744c-0.29966 0.29965-0.29966 0.78532 0 1.085 0.29966 0.29976 0.78533 0.29976 1.085 0l5.1864-5.1863 5.1743 5.1863c0.29976 0.29976 0.78543 0.29976 1.0848 0 0.29976-0.29965 0.29976-0.78532 3.15e-4 -1.085l-5.1864-5.1744 5.1864-5.1864c0.22757-0.21983 0.29598-0.55754 0.17165-0.84869-0.12454-0.29114-0.41569-0.47531-0.73213-0.4628-0.19767 0.0047903-0.38558 0.085959-0.52449 0.22674l-5.1744 5.1744-5.1864-5.1744c-0.14478-0.14663-0.34277-0.22834-0.5485-0.22674-0.027944-0.0013307-0.055621-0.0013307-0.083567 0z" clip-rule="evenodd" fill-rule="evenodd" stroke-width="1.0492"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ {%- comment -%}
2
+
3
+ Form: type tel
4
+
5
+ @param :field [Integer] El campo del formulario
6
+ @param :input_class [String] Las clases del componente
7
+ {%- endcomment -%}
8
+
9
+ {% include input.html field=field input_class=include.input_class %}
@@ -0,0 +1,40 @@
1
+ {%- comment -%}
2
+
3
+ Form: type text
4
+
5
+ @param :field [Integer] El campo del formulario
6
+ @param :text_class [String] Las clases del componente
7
+ {%- endcomment -%}
8
+
9
+ {%- assign name = include.field[0] -%}
10
+ {%- assign id = include.field[1].id | default: name -%}
11
+ {%- assign label = include.field[1].label[site.locale] -%}
12
+ {%- assign help = include.field[1].help[site.locale] -%}
13
+ {%- assign autocomplete = include.field[1].autocomplete -%}
14
+
15
+ <div class="form-group blue">
16
+ <label for="{{ id }}" class="f-17 pl-2">
17
+ {{ label }}
18
+ {% if include.field[1].required %}*{% endif %}
19
+ </label>
20
+
21
+ <textarea
22
+ {% if help %}
23
+ aria-describedby="help-{{ id }}"
24
+ {% endif %}
25
+ {% if include.field[1].required %}
26
+ required
27
+ {% endif %}
28
+ name="{{ name }}"
29
+ id="{{ id }}"
30
+ {% if autocomplete %}
31
+ autocomplete="{{ autocomplete }}"
32
+ {% endif %}
33
+ class="form-control {{ include.text_class }}"></textarea>
34
+
35
+ {%- if .help -%}
36
+ <small id="help-{{ id }}" class="form-text">
37
+ {{ help }}
38
+ </small>
39
+ {%- endif -%}
40
+ </div>
@@ -0,0 +1 @@
1
+ {% include buttons/link.html href="#" content="Subir una imagen" class="btn-primary f-20 rounded-5 m-2 p-3" %}
@@ -0,0 +1 @@
1
+ {% include buttons/copy.html copy="https://sutty.nl" text="Text" %}
@@ -0,0 +1,5 @@
1
+ {% include buttons/link.html href="#" content="Become a subscriber" class="btn-primary" %}
2
+
3
+ {% include headings/with_link.html level=2 text="Botón con link externo" %}
4
+
5
+ {% include buttons/link.html href="https://sutty.nl/" content="Find out more about Sutty" class="btn-primary" %}
@@ -0,0 +1,33 @@
1
+ <div class="content">
2
+ {%- include headings/h2.html text="Botones" -%}
3
+
4
+ {%- include headings/h3.html text="Botón con link" -%}
5
+
6
+ {%- include buttons/link.html href="#" class="btn-primary" content="Click me" -%}
7
+
8
+ {%- include headings/h3.html text="Botón con link externo" -%}
9
+
10
+ {%- include buttons/link.html href="https://sutty.nl/" class="btn-primary" content="Click me" -%}
11
+
12
+ {%- include headings/h3.html text="Botón con atributos extra" -%}
13
+
14
+ {%- assign extra = 'data-extra="Inspeccióname"' -%}
15
+
16
+ <p>Inspeccionar para encontrar el atributo <code>{{ extra }}</code></p>
17
+
18
+ {%- include buttons/link.html href="#" class="btn-primary" content="Click me" extra=extra -%}
19
+
20
+ {%- include headings/h3.html text="Botones de todos los colores" -%}
21
+
22
+ {%- for color in site.data.theme.colors -%}
23
+ {%- assign class = color[0] | replace: "_", "-" | prepend: "btn-" -%}
24
+
25
+ {%- include buttons/link.html href="#" class=class content=class -%}
26
+ {%- endfor -%}
27
+
28
+ {%- include headings/h3.html text="Botón sin link" -%}
29
+
30
+ <p>Los botones <code>&lt;button&gt;</code> se usan para interacciones JavaScript</p>
31
+
32
+ {%- include buttons/button.html class="btn-primary" content="Click me" -%}
33
+ </div>
@@ -0,0 +1,14 @@
1
+ <div class="row row-cols-2 row-cols-md-4">
2
+ {% for color in site.data.theme.colors %}
3
+ <div class="col">
4
+ <div class="w-100 embed-responsive embed-responsive-1by1">
5
+ <div class="embed-responsive-item background-{{ color[0] | replace: "_", "-" }} d-flex align-items-center justify-content-center">
6
+ <div>
7
+ <p>{{ color[0] | replace: "_", "-" }}</p>
8
+ <p>{{ color[1] }}</p>
9
+ </div>
10
+ </div>
11
+ </div>
12
+ </div>
13
+ {% endfor %}
14
+ </div>
@@ -0,0 +1,41 @@
1
+ <div class="content">
2
+ <h2>Título 2</h2>
3
+ <h3>Título 3</h3>
4
+ <h4>Título 4</h4>
5
+ <h5>Título 5</h5>
6
+ <h6>Título 6</h6>
7
+
8
+ <p class="display-1">Display 1</p>
9
+ <p class="display-2">Display 2</p>
10
+ <p class="display-3">Display 3</p>
11
+ <p class="display-4">Display 4</p>
12
+
13
+ <p class="lead">Párrafo resaltado</p>
14
+
15
+ <p class="lead-md">
16
+ <strong>Lorem ipsum dolor sit amet</strong>, consectetur adipiscing
17
+ elit, sed do eiusmod tempor incididunt ut labore et dolore magna
18
+ aliqua. <a href="#">Ut enim ad minim veniam</a>, quis nostrud
19
+ exercitation ullamco laboris nisi ut aliquip ex ea commodo
20
+ consequat. <em>Duis aute irure dolor</em> in reprehenderit in
21
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur.
22
+ Excepteur <mark>sint occaecat cupidatat non proident</mark>, sunt in
23
+ culpa qui officia <small>deserunt mollit anim id est laborum</small>.
24
+ </p>
25
+
26
+ <ul>
27
+ <li>Lorem ipsum dolor sit amet</li>
28
+ <li>consectetur adipiscing elit</li>
29
+ <li>sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</li>
30
+ </ul>
31
+
32
+ <ol>
33
+ <li>Lorem ipsum dolor sit amet</li>
34
+ <li>consectetur adipiscing elit</li>
35
+ <li>sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</li>
36
+ </ol>
37
+
38
+ <blockquote>
39
+ <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
40
+ </blockquote>
41
+ </div>
@@ -0,0 +1 @@
1
+ {%- include descriptor.html title='Mitocondria' author='Elio G.' description='Es una imagen de una mitocondria tomada...' class="px-3 py-4" -%}
@@ -0,0 +1,10 @@
1
+ {% for embed_responsive_aspect_ratio in site.data.theme.embed_responsive_aspect_ratios %}
2
+ {% assign x = embed_responsive_aspect_ratio | split: " " | first | remove: "(" %}
3
+ {% assign y = embed_responsive_aspect_ratio | split: " " | last | remove: ")" %}
4
+ {% assign text = x | append: "by" | append: y %}
5
+
6
+ <div class="mb-3">
7
+ {% include headings/with_link.html level=2 text=text %}
8
+ {% include embed_responsive.html src="public/placeholder.png" width=576 x=x y=y %}
9
+ </div>
10
+ {% endfor %}
@@ -0,0 +1,18 @@
1
+ {% for font_size in site.data.theme.font_sizes %}
2
+ <div class="mb-3">
3
+ {% assign title = "Tipografía f-" | append: font_size[0] %}
4
+ {% include headings/with_link.html level=2 text=title %}
5
+
6
+ <p class="f-{{ font_size[0] }}">
7
+ <strong>Lorem ipsum dolor sit amet</strong>, consectetur
8
+ adipiscing elit, sed do eiusmod tempor incididunt ut labore et
9
+ dolore magna aliqua. <a href="#">Ut enim ad minim veniam</a>, quis
10
+ nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
11
+ consequat. <em>Duis aute irure dolor</em> in reprehenderit in
12
+ voluptate velit esse cillum dolore eu fugiat nulla pariatur.
13
+ Excepteur <mark>sint occaecat cupidatat non proident</mark>, sunt
14
+ in culpa qui officia <small>deserunt mollit anim id est
15
+ laborum</small>.
16
+ </p>
17
+ </div>
18
+ {% endfor %}
@@ -0,0 +1 @@
1
+ {% include footer.html credits= site.i18n.credits %}
@@ -0,0 +1,3 @@
1
+ {%- include grilla.html
2
+ imagenes=site.data.fixtures.grilla.imagenes
3
+ -%}
@@ -0,0 +1,8 @@
1
+ {% assign imagenes = site.posts | where: "layout", "imagen" %}
2
+
3
+
4
+ {% for imagen in imagenes %}
5
+ <article class="col">
6
+ {% include_cached imagen.html imagen=imagen %}
7
+ </article>
8
+ {% endfor %}
@@ -0,0 +1,5 @@
1
+ {% capture svg %}
2
+ {% include svg/check.svg %}
3
+ {% endcapture %}
4
+
5
+ {%- include imagen_enviada.html class="mx-2" content=site.i18n.imagen_enviada svg=svg -%}
@@ -0,0 +1,7 @@
1
+ {% capture svg %}
2
+ <div class="w-90px fill-red">
3
+ {% include svg/x.svg %}
4
+ </div>
5
+ {% endcapture %}
6
+
7
+ {%- include imagen_enviada_error.html class="mx-2" content=site.i18n.imagen_enviada_error svg=svg href="#" -%}
@@ -0,0 +1,8 @@
1
+ {% include imagen_grilla.html
2
+ src="/public/imagen-ejemplo.png"
3
+ alt="Imagen de ejemplo"
4
+ title="Mitocondria"
5
+ author="Elio G."
6
+ width=164
7
+ href="https://sutty.nl"
8
+ %}
@@ -0,0 +1,3 @@
1
+ {% for letter_spacing in site.data.theme.letter_spacings %}
2
+ <p class="letter-spacing-{{ letter_spacing[0] }}">Letter spacing {{ letter_spacing[0] }}</p>
3
+ {% endfor %}
@@ -0,0 +1 @@
1
+ {%- include_cached menu.html active_cache_key=page.layout %}
@@ -0,0 +1,5 @@
1
+ <div class="content">
2
+ <p>Una imagen de 100px</p>
3
+ </div>
4
+
5
+ {% include picture.html src="public/placeholder.png" width=100 img_class="w-100" %}
@@ -0,0 +1,2 @@
1
+ {% include question_mark_button.html %}
2
+
@@ -0,0 +1 @@
1
+ {%- include subir_imagen.html form=site.data.forms.subir_imagen -%}
@@ -0,0 +1,21 @@
1
+ {% comment %}
2
+ Este elemento colocado en el mismo nivel que un elemento con la clase
3
+ toggled permite ocultarlo o mostrarlo.
4
+
5
+ @see toggler_label.html
6
+ @param :id [String] La ID
7
+ @param :toggled_class [String] Las clases del elemento toggled
8
+ @param :toggled_content [String] El contenido del elemento toggled
9
+ {% endcomment %}
10
+ <input
11
+ type="checkbox"
12
+ class="toggler sr-only"
13
+ data-action="body-scroll#toggle"
14
+ autocomplete="off"
15
+ id="{{ include.id }}"
16
+ name="{{ include.id }}"
17
+ aria-labelledby="{{ include.id }}-label" />
18
+
19
+ <div class="toggled position-absolute {{ include.toggled_class }}">
20
+ {{ include.toggled_content }}
21
+ </div>
@@ -0,0 +1,21 @@
1
+ {% comment %}
2
+ Este label puede usarse para abrir y cerrar un elemento asociado a
3
+ toggler.html
4
+
5
+ Mientras compartan la misma ID puede colocarse el label en cualquier
6
+ lado del HTML.
7
+
8
+ @see toggler.html
9
+ @param :id [String] La ID del elemento
10
+ @param :class [String] CSS
11
+ @param :content [String] Contenido
12
+ {% endcomment %}
13
+ <label
14
+ data-controller="label"
15
+ tabindex="0"
16
+ aria-hidden="true"
17
+ id="{{ include.id }}-label"
18
+ for="{{ include.id }}"
19
+ class="{{ include.class }}">
20
+ {{ include.content }}
21
+ </label>
@@ -0,0 +1,23 @@
1
+ {% comment %}
2
+ Este label puede usarse para abrir y cerrar un elemento asociado a
3
+ toggler.html
4
+
5
+ Similar a toggler_label.html pero no comparte la misma ID, se puede
6
+ usar para botones de cierre o relacionados, pero que no aportan
7
+ descripción al elemento que se abre y cierra (especialmente para
8
+ lectores de pantalla).
9
+
10
+ @see togger_label.html
11
+ @param :id [String] La ID del elemento
12
+ @param :class [String] CSS
13
+ @param :content [HTML] Contenido
14
+ {% endcomment %}
15
+ <label
16
+ data-controller="label"
17
+ tabindex="0"
18
+ aria-hidden="true"
19
+ id="{{ include.id }}-label-related"
20
+ for="{{ include.id }}"
21
+ class="{{ include.class }}">
22
+ {{ include.content }}
23
+ </label>
@@ -0,0 +1,19 @@
1
+ {% comment %}
2
+ Este elemento colocado en el mismo nivel que un elemento con la clase
3
+ toggled permite ocultarlo o mostrarlo.
4
+
5
+ @see toggler_label.html
6
+ @param :id [String] La ID
7
+ @param :type [String] Tipo del input
8
+ @param :name [String] Nombre, si es repetido se usa el mismo grupo
9
+ @param :extra [HTML] Atributos extra
10
+ {% endcomment %}
11
+ <input
12
+ type="{{ include.type | default: 'checkbox' }}"
13
+ class="toggler sr-only"
14
+ autocomplete="off"
15
+ {{ include.extra }}
16
+ id="{{ include.id }}"
17
+ name="{{ include.name | default: include.id }}"
18
+ aria-labelledby="{{ include.id }}-label"
19
+ >
@@ -0,0 +1,22 @@
1
+ {% comment %}
2
+ Este label puede usarse para abrir y cerrar un elemento asociado a
3
+ toggler.html
4
+
5
+ Mientras compartan la misma ID puede colocarse el label en cualquier
6
+ lado del HTML.
7
+
8
+ @see toggler.html
9
+ @param :id [String] La ID del elemento
10
+ @param :class [String] CSS
11
+ @param :content [String] Contenido
12
+ {% endcomment %}
13
+ <label
14
+ data-controller="label"
15
+ tabindex="0"
16
+ aria-hidden="true"
17
+ id="{{ include.id }}-label"
18
+ for="{{ include.id }}"
19
+ class="{{ include.class }}"
20
+ >
21
+ {{ include.content }}
22
+ </label>
@@ -0,0 +1,24 @@
1
+ {% comment %}
2
+ Este label puede usarse para abrir y cerrar un elemento asociado a
3
+ toggler.html
4
+
5
+ Similar a toggler_label.html pero no comparte la misma ID, se puede
6
+ usar para botones de cierre o relacionados, pero que no aportan
7
+ descripción al elemento que se abre y cierra (especialmente para
8
+ lectores de pantalla).
9
+
10
+ @see togger_label.html
11
+ @param :id [String] La ID del elemento
12
+ @param :class [String] CSS
13
+ @param :content [String] Contenido
14
+ {% endcomment %}
15
+ <label
16
+ data-controller="label"
17
+ tabindex="0"
18
+ aria-hidden="true"
19
+ id="{{ include.id }}-label-related"
20
+ for="{{ include.id }}"
21
+ class="{{ include.class }}"
22
+ >
23
+ {{ include.content }}
24
+ </label>
@@ -0,0 +1,9 @@
1
+ {%- comment -%}
2
+
3
+ Form: type url
4
+
5
+ @param :field [Integer] El campo del formulario
6
+ @param :input_class [String] Las clases del componente
7
+ {%- endcomment -%}
8
+
9
+ {% include input.html field=field input_class=include.input_class %}
@@ -0,0 +1,40 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include menu.html %}
6
+
7
+ <div class="row no-gutters align-items-center justify-content-center">
8
+ <div class="col-11 col-md-4 px-4 py-3">
9
+ <div class="text-center pb-5">
10
+ {% include headings/h2.html
11
+ text="Ayuda"
12
+ class="text-primary f-25 font-weight-bold"
13
+ %}
14
+ </div>
15
+ <div class="pb-5">
16
+ <div class="text-primary font-weight-bold">
17
+ {{ site.i18n.question_1.title }}
18
+ </div>
19
+ <div class="text-primary">
20
+ {{ site.i18n.question_1.content }}
21
+ </div>
22
+ </div>
23
+ <div class="pb-5">
24
+ <div class="text-primary font-weight-bold">
25
+ {{ site.i18n.question_2.title }}
26
+ </div>
27
+ <div class="text-primary">
28
+ {{ site.i18n.question_2.content }}
29
+ </div>
30
+ </div>
31
+ <div class="pb-5">
32
+ <div class="text-primary font-weight-bold">
33
+ {{ site.i18n.question_3.title }}
34
+ </div>
35
+ <div class="text-primary">
36
+ {{ site.i18n.question_3.content }}
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </div>
@@ -0,0 +1,45 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% assign date_format = site.i18n.date.format | default: "%b %-d, %Y" %}
6
+
7
+ <article class="h-entry" itemscope itemtype="http://schema.org/Article">
8
+ <header>
9
+ <h1 class="p-name" itemprop="name headline">{{ page.title | default: '' | escape }}</h1>
10
+
11
+ {%- if page.description -%}
12
+ <p class="lead p-summary" itemprop="description">{{ page.description | default: '' | escape }}</p>
13
+ {%- endif -%}
14
+
15
+ <p>
16
+ {{ site.i18n.published_at }}
17
+
18
+ <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
19
+ {{ page.date | date_local: date_format }}
20
+ </time>
21
+
22
+ {% if page.last_modified_at %}
23
+ {{ site.i18n.last_modified_at }}
24
+
25
+ <time class="dt-published" datetime="{{ page.last_modified_at | date_to_xmlschema }}" itemprop="datePublished">
26
+ {{ page.last_modified_at | date_local: date_format }}
27
+ </time>
28
+ {% endif %}
29
+ </p>
30
+ </header>
31
+
32
+ <div class="e-content" itemprop="articleBody">
33
+ {{ content }}
34
+ </div>
35
+
36
+ <footer>
37
+ <a class="u-url" itemprop="url" href="{{ page.url }}" hidden>
38
+ {{ site.url }}{{ page.url }}
39
+ </a>
40
+
41
+ {%- if page.uuid -%}
42
+ <span hidden itemprop="identifier">{{ page.uuid }}</span>
43
+ {%- endif -%}
44
+ </footer>
45
+ </article>