editorial-autogestiva-jekyll-theme 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/boolean.html +30 -0
  3. data/_includes/email.html +1 -0
  4. data/_includes/form/boolean.html +1 -0
  5. data/_includes/form/email.html +1 -0
  6. data/_includes/form/hidden.html +1 -0
  7. data/_includes/form/input.html +1 -0
  8. data/_includes/form/number.html +1 -0
  9. data/_includes/form/predefined_array.html +1 -0
  10. data/_includes/form/section.html +1 -0
  11. data/_includes/form/separator.html +1 -0
  12. data/_includes/form/string.html +1 -0
  13. data/_includes/form/submit.html +1 -0
  14. data/_includes/form/text.html +1 -0
  15. data/_includes/form/url.html +1 -0
  16. data/_includes/hidden.html +5 -0
  17. data/_includes/input.html +33 -0
  18. data/_includes/number.html +1 -0
  19. data/_includes/predefined_array.html +39 -0
  20. data/_includes/section.html +1 -0
  21. data/_includes/separator.html +1 -0
  22. data/_includes/string.html +3 -0
  23. data/_includes/submit.html +1 -0
  24. data/_includes/text.html +32 -0
  25. data/_includes/url.html +1 -0
  26. data/_layouts/book.html +1 -1
  27. metadata +6 -6
  28. data/_includes/boolean.html +0 -1
  29. data/_includes/email.html +0 -1
  30. data/_includes/form/boolean.html +0 -30
  31. data/_includes/form/email.html +0 -1
  32. data/_includes/form/hidden.html +0 -5
  33. data/_includes/form/input.html +0 -33
  34. data/_includes/form/number.html +0 -1
  35. data/_includes/form/predefined_array.html +0 -39
  36. data/_includes/form/section.html +0 -1
  37. data/_includes/form/separator.html +0 -1
  38. data/_includes/form/string.html +0 -3
  39. data/_includes/form/submit.html +0 -1
  40. data/_includes/form/text.html +0 -32
  41. data/_includes/form/url.html +0 -1
  42. data/_includes/hidden.html +0 -1
  43. data/_includes/input.html +0 -1
  44. data/_includes/number.html +0 -1
  45. data/_includes/predefined_array.html +0 -1
  46. data/_includes/section.html +0 -1
  47. data/_includes/separator.html +0 -1
  48. data/_includes/string.html +0 -1
  49. data/_includes/submit.html +0 -1
  50. data/_includes/text.html +0 -1
  51. data/_includes/url.html +0 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d869ce07c203867e7cafc72684ae44028971c711bd59c86e010fd1dec968795c
4
- data.tar.gz: 6ce03db92629e293a07ba10583a274de9ad1814fa2ce8f94e0aa576cfa72cd06
3
+ metadata.gz: 7292c5833189d4f7f9006f5bd180e4e2d96071d159449083574de39067bf4170
4
+ data.tar.gz: 5c52becac753eb35242323c3e96b4dc9a762c40335928ad3afb00ef55a0571ce
5
5
  SHA512:
6
- metadata.gz: b4b10eb19d000565eb3521ce5a3d4de55068f8bfe1087b9adbcd3951189cfd07319096c5921ef7afeed4acba4a36dcc104e2f32c2c6d271c7d06ef8d786b5338
7
- data.tar.gz: 1ab785ab4ff7ebc973fc3d36a043767709dc623a912c305286f3e28b3a3cadcd0f0a60d306ed6dadf8f7b173309fb372244b8fe055d256cc09a763f6e98b0de1
6
+ metadata.gz: 7288ad50cae6390be83bff2318e0630fad2b028a4f40ce2fda97b332d39fe152c3b54328d486e4d9257bbcbad63b058340fb5166100f85a61ef43704ea0c5e97
7
+ data.tar.gz: 02e465e387c31fb8d2fbb289df7dc34df28607169bc4294e3c41ffec8c544312c4cba7f409dadb76b61e9c61a70bc69e97e87a3def226673e3afdc8b634e11a0
@@ -0,0 +1,30 @@
1
+ {%- assign name = include.field[0] -%}
2
+ {%- assign id = include.field[1].id | default: name -%}
3
+ {%- assign label = include.field[1].label[site.locale] -%}
4
+ {%- assign help = include.field[1].help[site.locale] -%}
5
+ {%- assign autocomplete = include.field[1].autocomplete -%}
6
+
7
+ <div class="form-check text-left">
8
+ <input
9
+ {% if help %}
10
+ aria-describedby="help-{{ id }}"
11
+ {% endif %}
12
+ {% if include.field[1].required %}
13
+ required
14
+ {% endif %}
15
+ type="checkbox"
16
+ name="{{ name }}"
17
+ id="{{ id }}"
18
+ {% if autocomplete %}
19
+ autocomplete="{{ autocomplete }}"
20
+ {% endif %}
21
+ class="form-check-input" />
22
+
23
+ <label class="form-check-label" for="{{ id }}">{{ label }}</label>
24
+
25
+ {%- if help -%}
26
+ <small id="help-{{ id }}" class="form-text">
27
+ {{ help }}
28
+ </small>
29
+ {%- endif -%}
30
+ </div>
@@ -0,0 +1 @@
1
+ {% include input.html field=field %}
@@ -0,0 +1 @@
1
+ .././boolean.html
@@ -0,0 +1 @@
1
+ .././email.html
@@ -0,0 +1 @@
1
+ .././hidden.html
@@ -0,0 +1 @@
1
+ .././input.html
@@ -0,0 +1 @@
1
+ .././number.html
@@ -0,0 +1 @@
1
+ .././predefined_array.html
@@ -0,0 +1 @@
1
+ .././section.html
@@ -0,0 +1 @@
1
+ .././separator.html
@@ -0,0 +1 @@
1
+ .././string.html
@@ -0,0 +1 @@
1
+ .././submit.html
@@ -0,0 +1 @@
1
+ .././text.html
@@ -0,0 +1 @@
1
+ .././url.html
@@ -0,0 +1,5 @@
1
+ {%- assign name = include.field[0] -%}
2
+ {%- assign id = include.field[1].id | default: name -%}
3
+ {%- assign value = include.field[1].value -%}
4
+
5
+ <input type="hidden" value="{{ value }}" name="{{ name }}" id="{{ id }}" />
@@ -0,0 +1,33 @@
1
+ {%- assign name = include.field[0] -%}
2
+ {%- assign id = include.field[1].id | default: name -%}
3
+ {%- assign label = include.field[1].label[site.locale] -%}
4
+ {%- assign help = include.field[1].help[site.locale] -%}
5
+ {%- assign autocomplete = include.field[1].autocomplete -%}
6
+
7
+ <div class="form-group">
8
+ <label for="{{ id }}">
9
+ {{ label }}
10
+ {% if include.field[1].required %}*{% endif %}
11
+ </label>
12
+
13
+ <input
14
+ {% if help %}
15
+ aria-describedby="help-{{ id }}"
16
+ {% endif %}
17
+ {% if include.field[1].required %}
18
+ required
19
+ {% endif %}
20
+ type="{{ include.field[1].type }}"
21
+ name="{{ name }}"
22
+ id="{{ id }}"
23
+ {% if autocomplete %}
24
+ autocomplete="{{ autocomplete }}"
25
+ {% endif %}
26
+ class="form-control" />
27
+
28
+ {%- if help -%}
29
+ <small id="help-{{ id }}" class="form-text">
30
+ {{ help }}
31
+ </small>
32
+ {%- endif -%}
33
+ </div>
@@ -0,0 +1 @@
1
+ {% include input.html field=field %}
@@ -0,0 +1,39 @@
1
+ {%- assign name = include.field[0] -%}
2
+ {%- assign id = include.field[1].id | default: name -%}
3
+ {%- assign label = include.field[1].label[site.locale] -%}
4
+ {%- assign help = include.field[1].help[site.locale] -%}
5
+ {%- assign autocomplete = include.field[1].autocomplete -%}
6
+
7
+ <div class="form-group">
8
+ <label for="{{ id }}">
9
+ {{ label }}
10
+ {% if include.field[1].required %}*{% endif %}
11
+ </label>
12
+
13
+ <select
14
+ {% if help %}
15
+ aria-describedby="help-{{ id }}"
16
+ {% endif %}
17
+ {% if include.field[1].required %}
18
+ required
19
+ {% endif %}
20
+ name="{{ name }}"
21
+ id="{{ id }}"
22
+ {% if autocomplete %}
23
+ autocomplete="{{ autocomplete }}"
24
+ {% endif %}
25
+ class="form-control">
26
+
27
+ <option value="" selected></option>
28
+
29
+ {%- for option in include.field[1].values -%}
30
+ <option value="{{ option }}">{{ option }}</option>
31
+ {%- endfor -%}
32
+ </select>
33
+
34
+ {%- if help -%}
35
+ <small id="help-{{ id }}" class="form-text">
36
+ {{ help }}
37
+ </small>
38
+ {%- endif -%}
39
+ </div>
@@ -0,0 +1 @@
1
+ <h2 id="{{ include.field[0] }}">{{ include.field[1].title }}</h2>
@@ -0,0 +1 @@
1
+ <hr/>
@@ -0,0 +1,3 @@
1
+ {% assign f = field %}
2
+ {% assign f.type = 'text' %}
3
+ {% include input.html field=f %}
@@ -0,0 +1 @@
1
+ <input type="submit" class="btn btn-success" value="{{ include.field[1].label[site.locale] }}" />
@@ -0,0 +1,32 @@
1
+ {%- assign name = include.field[0] -%}
2
+ {%- assign id = include.field[1].id | default: name -%}
3
+ {%- assign label = include.field[1].label[site.locale] -%}
4
+ {%- assign help = include.field[1].help[site.locale] -%}
5
+ {%- assign autocomplete = include.field[1].autocomplete -%}
6
+
7
+ <div class="form-group">
8
+ <label for="{{ id }}">
9
+ {% if include.field[1].required %}*{% endif %}
10
+ {{ label }}
11
+ </label>
12
+
13
+ <textarea
14
+ {% if help %}
15
+ aria-describedby="help-{{ id }}"
16
+ {% endif %}
17
+ {% if include.field[1].required %}
18
+ required
19
+ {% endif %}
20
+ name="{{ name }}"
21
+ id="{{ id }}"
22
+ {% if autocomplete %}
23
+ autocomplete="{{ autocomplete }}"
24
+ {% endif %}
25
+ class="form-control"></textarea>
26
+
27
+ {%- if .help -%}
28
+ <small id="help-{{ id }}" class="form-text">
29
+ {{ help }}
30
+ </small>
31
+ {%- endif -%}
32
+ </div>
@@ -0,0 +1 @@
1
+ {% include input.html field=field %}
@@ -103,7 +103,7 @@ layout: default
103
103
  {%- for dm in page.delivery_methods -%}
104
104
  <dd>{{ site.i18n.book[dm].text }}</dd>
105
105
  <meta
106
- itemprop="acceptedPaymentMethod"
106
+ itemprop="availableDeliveryMethod"
107
107
  content="http://purl.org/goodrelations/v1#{{ site.i18n.book[pm].schema }}" />
108
108
  {%- endfor -%}
109
109
  </dl>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: editorial-autogestiva-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - f
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-05 00:00:00.000000000 Z
11
+ date: 2020-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -164,7 +164,7 @@ dependencies:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
166
  version: '12.0'
167
- description:
167
+ description:
168
168
  email:
169
169
  - f@sutty.nl
170
170
  executables: []
@@ -237,7 +237,7 @@ metadata:
237
237
  source_code_uri: https://0xacab.org/sutty/jekyll/editorial-autogestiva-jekyll-theme
238
238
  changelog_uri: https://0xacab.org/sutty/jekyll/editorial-autogestiva-jekyll-theme/-/blob/master/CHANGELOG.md
239
239
  documentation_uri: https://rubydoc.info/gems/editorial-autogestiva-jekyll-theme
240
- post_install_message:
240
+ post_install_message:
241
241
  rdoc_options:
242
242
  - "--title"
243
243
  - editorial-autogestiva-jekyll-theme - Una plantilla para editoriales autogestivas
@@ -260,7 +260,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
260
260
  version: '0'
261
261
  requirements: []
262
262
  rubygems_version: 3.0.3
263
- signing_key:
263
+ signing_key:
264
264
  specification_version: 4
265
265
  summary: Una plantilla para editoriales autogestivas
266
266
  test_files: []
@@ -1 +0,0 @@
1
- _includes/form/boolean.html
@@ -1 +0,0 @@
1
- _includes/form/email.html
@@ -1,30 +0,0 @@
1
- {%- assign name = include.field[0] -%}
2
- {%- assign id = include.field[1].id | default: name -%}
3
- {%- assign label = include.field[1].label[site.locale] -%}
4
- {%- assign help = include.field[1].help[site.locale] -%}
5
- {%- assign autocomplete = include.field[1].autocomplete -%}
6
-
7
- <div class="form-check text-left">
8
- <input
9
- {% if help %}
10
- aria-describedby="help-{{ id }}"
11
- {% endif %}
12
- {% if include.field[1].required %}
13
- required
14
- {% endif %}
15
- type="checkbox"
16
- name="{{ name }}"
17
- id="{{ id }}"
18
- {% if autocomplete %}
19
- autocomplete="{{ autocomplete }}"
20
- {% endif %}
21
- class="form-check-input" />
22
-
23
- <label class="form-check-label" for="{{ id }}">{{ label }}</label>
24
-
25
- {%- if help -%}
26
- <small id="help-{{ id }}" class="form-text">
27
- {{ help }}
28
- </small>
29
- {%- endif -%}
30
- </div>
@@ -1 +0,0 @@
1
- {% include input.html field=field %}
@@ -1,5 +0,0 @@
1
- {%- assign name = include.field[0] -%}
2
- {%- assign id = include.field[1].id | default: name -%}
3
- {%- assign value = include.field[1].value -%}
4
-
5
- <input type="hidden" value="{{ value }}" name="{{ name }}" id="{{ id }}" />
@@ -1,33 +0,0 @@
1
- {%- assign name = include.field[0] -%}
2
- {%- assign id = include.field[1].id | default: name -%}
3
- {%- assign label = include.field[1].label[site.locale] -%}
4
- {%- assign help = include.field[1].help[site.locale] -%}
5
- {%- assign autocomplete = include.field[1].autocomplete -%}
6
-
7
- <div class="form-group">
8
- <label for="{{ id }}">
9
- {{ label }}
10
- {% if include.field[1].required %}*{% endif %}
11
- </label>
12
-
13
- <input
14
- {% if help %}
15
- aria-describedby="help-{{ id }}"
16
- {% endif %}
17
- {% if include.field[1].required %}
18
- required
19
- {% endif %}
20
- type="{{ include.field[1].type }}"
21
- name="{{ name }}"
22
- id="{{ id }}"
23
- {% if autocomplete %}
24
- autocomplete="{{ autocomplete }}"
25
- {% endif %}
26
- class="form-control" />
27
-
28
- {%- if help -%}
29
- <small id="help-{{ id }}" class="form-text">
30
- {{ help }}
31
- </small>
32
- {%- endif -%}
33
- </div>
@@ -1 +0,0 @@
1
- {% include input.html field=field %}
@@ -1,39 +0,0 @@
1
- {%- assign name = include.field[0] -%}
2
- {%- assign id = include.field[1].id | default: name -%}
3
- {%- assign label = include.field[1].label[site.locale] -%}
4
- {%- assign help = include.field[1].help[site.locale] -%}
5
- {%- assign autocomplete = include.field[1].autocomplete -%}
6
-
7
- <div class="form-group">
8
- <label for="{{ id }}">
9
- {{ label }}
10
- {% if include.field[1].required %}*{% endif %}
11
- </label>
12
-
13
- <select
14
- {% if help %}
15
- aria-describedby="help-{{ id }}"
16
- {% endif %}
17
- {% if include.field[1].required %}
18
- required
19
- {% endif %}
20
- name="{{ name }}"
21
- id="{{ id }}"
22
- {% if autocomplete %}
23
- autocomplete="{{ autocomplete }}"
24
- {% endif %}
25
- class="form-control">
26
-
27
- <option value="" selected></option>
28
-
29
- {%- for option in include.field[1].values -%}
30
- <option value="{{ option }}">{{ option }}</option>
31
- {%- endfor -%}
32
- </select>
33
-
34
- {%- if help -%}
35
- <small id="help-{{ id }}" class="form-text">
36
- {{ help }}
37
- </small>
38
- {%- endif -%}
39
- </div>
@@ -1 +0,0 @@
1
- <h2 id="{{ include.field[0] }}">{{ include.field[1].title }}</h2>
@@ -1 +0,0 @@
1
- <hr/>
@@ -1,3 +0,0 @@
1
- {% assign f = field %}
2
- {% assign f.type = 'text' %}
3
- {% include input.html field=f %}
@@ -1 +0,0 @@
1
- <input type="submit" class="btn btn-success" value="{{ include.field[1].label[site.locale] }}" />
@@ -1,32 +0,0 @@
1
- {%- assign name = include.field[0] -%}
2
- {%- assign id = include.field[1].id | default: name -%}
3
- {%- assign label = include.field[1].label[site.locale] -%}
4
- {%- assign help = include.field[1].help[site.locale] -%}
5
- {%- assign autocomplete = include.field[1].autocomplete -%}
6
-
7
- <div class="form-group">
8
- <label for="{{ id }}">
9
- {% if include.field[1].required %}*{% endif %}
10
- {{ label }}
11
- </label>
12
-
13
- <textarea
14
- {% if help %}
15
- aria-describedby="help-{{ id }}"
16
- {% endif %}
17
- {% if include.field[1].required %}
18
- required
19
- {% endif %}
20
- name="{{ name }}"
21
- id="{{ id }}"
22
- {% if autocomplete %}
23
- autocomplete="{{ autocomplete }}"
24
- {% endif %}
25
- class="form-control"></textarea>
26
-
27
- {%- if .help -%}
28
- <small id="help-{{ id }}" class="form-text">
29
- {{ help }}
30
- </small>
31
- {%- endif -%}
32
- </div>
@@ -1 +0,0 @@
1
- {% include input.html field=field %}
@@ -1 +0,0 @@
1
- _includes/form/hidden.html
@@ -1 +0,0 @@
1
- _includes/form/input.html
@@ -1 +0,0 @@
1
- _includes/form/number.html
@@ -1 +0,0 @@
1
- _includes/form/predefined_array.html
@@ -1 +0,0 @@
1
- _includes/form/section.html
@@ -1 +0,0 @@
1
- _includes/form/separator.html
@@ -1 +0,0 @@
1
- _includes/form/string.html
@@ -1 +0,0 @@
1
- _includes/form/submit.html
@@ -1 +0,0 @@
1
- _includes/form/text.html
@@ -1 +0,0 @@
1
- _includes/form/url.html