variar / grav-plugin-unitegallery

Grav plugin to create image galleries with unitegallery js library
MIT License
19 stars 5 forks source link

Plugin outputs raw HTML with Gantry Templates #15

Closed marcodeluca closed 7 years ago

marcodeluca commented 7 years ago

Hi,

Was happy to find this plugin but struggling to get it working with gantry templates. The plugin is outputting raw HTML to the page: http://dev.khr.creativelogic.io/page-with-gallery

If I switch to the antimatter template, it works just fine. Any suggestions?

marcodeluca commented 7 years ago

ok solved. with gantry, the output of your gallery.html.twig file as suggested wasn't rendering the HTML properly. So if you adjust that file to the following, it works:

Note the change is to include: |raw

<div class="modular-row gallery-container {{ page.header.class }}">
    {{ unite_gallery(page.media.images)|raw }}
</div>
variar commented 7 years ago

Thanks, added this to readme.