Back to Multi Support

VasekS
VasekS

Hi,

is there any plugin for dynamic manage "Portfolio" Isotope Gallery from backed on this theme, or any idea how to manage it?

thanks

Vaclav

VasekS
VasekS

I install IsoGallery by Rebel59 and update isogallery/default.htm

<div class="portfolio-items">

    {% for gallery in galleries %}

        {% for category in gallery.categories %}

            {% for photo in gallery.photos %}

                <div class="portfolio-item  {{category.slug}}"  style="background-image: url({{photo.path}}); background-size: cover;">
                    <div class="portfolio-item-inner">
                            <!--- img class="img-responsive" src="{{photo.path}}" alt="" -->
                            <div class="portfolio-info">
                                {% if photo.title %}
                                    <h3>{{ photo.title }}</h3>
                                {% else %}
                                    <h3>{{ gallery.title }}</h3>
                                {% endif %}

                                    {{ photo.description }}
                                <a class="preview" href="{{photo.path}}" rel="prettyPhoto[reference]"><i class="fa fa-eye"></i></a>
                            </div>
                    </div>
                </div>

            {% endfor %}

        {%endfor%}

    {% endfor %}

</div>

Last updated

1-2 of 2