Commit e4c318b8 by Manzar Hussain

add category template

parent ed6494b9
{#
/**
* @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
*/
#}
{% for field in fields -%}
<li>{{ field.content }}</li>
{%- endfor %}
\ No newline at end of file
{#
/**
* @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
*/
#}
{% if title %}
<h3>{{ title }}</h3>
{% endif %}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_l_con_b">
<div class="la_sb_l">
<div class="ls_sbmenu sb_dd_m_data">
<ul>
{% for row in rows %}
{{- row.content -}}
{% endfor %}
</ul>
</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