traducciones del sitio
This commit is contained in:
parent
7f9d24cbd2
commit
30028361b7
1 changed files with 25 additions and 0 deletions
25
assets/data/site.json
Normal file
25
assets/data/site.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
---
|
||||
|
||||
{% comment %}
|
||||
Genera un site.json con las traducciones del sitio y los datos de los
|
||||
pasos del carrito. No los extraemos directamente con el filtro
|
||||
`jsonify` porque extraen demasiada información y el JSON se rompe.
|
||||
|
||||
TODO: El contenido de los pasos del carrito no aparece.
|
||||
{% endcomment %}
|
||||
|
||||
{%- assign steps = 'cart,shipment,payment,confirmation' | split: ',' -%}
|
||||
|
||||
{
|
||||
{%- for step in steps %}
|
||||
{%- assign step_page = site.posts | find: 'layout', step -%}
|
||||
"{{ step }}": {
|
||||
{%- for attribute in site.data.layouts[step] -%}
|
||||
{%- assign attribute_key = attribute[0] -%}
|
||||
"{{ attribute_key }}": {{ step_page[attribute_key] | jsonify }}{% unless forloop.last %},{% endunless %}
|
||||
{%- endfor -%}
|
||||
},
|
||||
{% endfor %}
|
||||
"i18n": {{ site.i18n | jsonify }}
|
||||
}
|
Loading…
Reference in a new issue