Skip to content

Instantly share code, notes, and snippets.

@HenderOrlando
Created March 6, 2014 20:44
Show Gist options
  • Select an option

  • Save HenderOrlando/9399261 to your computer and use it in GitHub Desktop.

Select an option

Save HenderOrlando/9399261 to your computer and use it in GitHub Desktop.
{% include '_boxes.html.twig' with {
'boxes' : [
{
is_row : true,
num : null,
contenido : {
id : 'id_box',
url : 'url/del/header',
open : 'right',
texto : 'Encabezado',
cols : [{
tipo : "img",
body_sources : [
{
src : 'url/de/la/imagen'
}
]
},
{
body : 'párrafo de texto a mostrar'
}],
footer : 'foot'
}
},
{
is_row : true,
num : null,
contenido : {
id : 'id_box_2',
url : 'url/del/header/2',
open : 'right',
texto : 'Encabezado 2',
cols : [{
tipo : "img",
body_sources : [
{
src : 'url/de/la/imagen'
}
]
},
{
body : 'párrafo de texto a mostrar'
}],
footer : 'foot 2'
}
},
],
} %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment