Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thotbox/941ef110cb741d3c61ee to your computer and use it in GitHub Desktop.
Save thotbox/941ef110cb741d3c61ee to your computer and use it in GitHub Desktop.
ExpressionEngine: Grid Images (CE)
<div class="wygwam">
{exp:grid_images}{page_text}{/exp:grid_images}
</div>
{page_images}
{if page_images:image_size == '1/2 Left'}
{exp:ce_img:pair src="{page_images:image}" width="640" allow_scale_larger="no" crop="no" quality="70"}<meta class="grid_images" id="grid_source_{page_images:count}" data-src="{made}" data-float="left" data-width="half">{/exp:ce_img:pair}
{if:elseif page_images:image_size == '1/2 Right'}
{exp:ce_img:pair src="{page_images:image}" width="640" allow_scale_larger="no" crop="no" quality="70"}<meta class="grid_images" id="grid_source_{page_images:count}" data-src="{made}" data-float="right" data-width="half">{/exp:ce_img:pair}
{if:else}
{exp:ce_img:pair src="{page_images:image}" width="960" allow_scale_larger="no" crop="no" quality="70"}<meta class="grid_images" id="grid_source_{page_images:count}" data-src="{made}" data-float="none" data-width="full">{/exp:ce_img:pair}
{/if}
{/page_images}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment