Skip to content

Instantly share code, notes, and snippets.

@micahgodbolt
Created May 11, 2016 14:39
Show Gist options
  • Save micahgodbolt/24c48096918b64fa44f2e6a751125754 to your computer and use it in GitHub Desktop.
Save micahgodbolt/24c48096918b64fa44f2e6a751125754 to your computer and use it in GitHub Desktop.
{% embed 'band.twig' with
{
"global": _context,
"body": {
"layout": "gallery5"
},
"meta": meta,
} only
%}
{% block header %}
{% include 'band_header.twig' with {'title': global.title } only %}
{% endblock %}
{% block body %}
{% for logo in global.logos %}
{% include 'image_embed.twig' with
{
"config": {
"hover_effect": "bw-color",
"align": "reduced"
},
"image": {
"src": logo.image.src
},
"link": {
"href": logo.link.href,
"title": logo.link.title
}
}
only %}
{% endfor %}
{% endblock %}
{% block footer %}
{% include 'cta.twig' with
{
"name": "cta",
"config": {
"type": "primary"
},
"link": {
"text": global.link.text,
"href": global.link.href,
"title": global.link.title
}
}
only %}
{% endblock %}
{% endembed %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment