Commit 7f93026d by Manzar Hussain

delete file

parent cebe5898
{#
/**
* @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="a_s_w_c">
<div class="ls_i_c">
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<div class="a_r_c_b">
{% if title %}
<h4 class="hm_cb_d">{{ title }}</h4>
{% endif %}
{% for row in rows %}
<div class="arcb_data">
<div class="col-sm-6">{{- row.content -}}</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
<!-- bottom container box end -->
\ 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