Commit 8affa59d by Manzar Hussain

event photos views

parent 28090987
{#
/**
* @file
* Default theme implementation to display a view of unformatted rows.
*
* Available variables:
* - title: The title of this group of rows. May be empty.
* - rows: A list of the view's row items.
* - attributes: The row's HTML attributes.
* - content: The row's content.
* - view: The view object.
* - default_row_class: A flag indicating whether default classes should be
* used on rows.
*
* @see template_preprocess_views_view_unformatted()
*
* @ingroup themeable
*/
#}
<div class="container-fluid spacerTB photo_va">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="h_c_b_wrapper">
<h6 class="h_c_w_bnm">Photos</h6>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed
to using 'Content here, content here',</p>
</div>
<div class="p_masarny row">
<div class="m_c_l_b">
{% for row in rows %}
<div class="grid-item">
<a href="images/lm1.jpg" data-lightbox="image-1" data-title="My caption">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_image }}'] }}
</a>
</div>
{% endfor %}
</div>
{% for row in rows %}
<div class="grid-item grid-item--width2">
<a href="images/lm2.png" data-lightbox="image-1" data-title="My caption">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_image }}'] }}
</a>
</div>
{% endfor %}
</div>
<div class="cs_btn_c_b">
<a href="/photos">View All &nbsp;<i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment