所有图像都加载在同一页面中,我如何控制使用分页?任何人都可以帮我解决这个问题.
这是我的代码.
{module_photogallery id="123456" collection="test2016" template="" }
<div class="container">
<div class="row">
{% for item in test2016.items %}
<div class="col-md-3 col-sm-3 col-xs-6">
<a onclick="myLightbox.start(this);return false;" rel="lightbox[photo2015]" href="{{item.link}}">
<img src="{{item.link}}?Action=thumbnail&Width=250&Height=150&algorithm=fill_proportional">
</a>
</div>
{% endfor %}
</div>
</div>
Run Code Online (Sandbox Code Playgroud)