Commit 920953cb by Manzar Hussain

add filter for history

parent d64753e6
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
<span></span> <span></span>
</div> </div>
</div> </div>
<div class="hs_wrap_c historyscrollerPane"> <div class="hs_wrap_c historyscrollerPane" style="display: none;">
<ul class="count_li_item"> <ul class="count_li_item">
{% for row in rows %} {% for row in rows %}
<li class="blue"> <li class="blue">
......
{#
/**
* @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 bg_l_gray spacerTB dichistroy dic-font-size">
<div class="row">
<div class="container">
<div class="row">
<div class="col-md-8">
<h6 class="h_c_w_bnm">DIC Corporation History</h6>
<p class="sub-text">A look into the rich history of 110+ years</p>
</div>
<div class="col-md-4">
<ul class="d-flex justify-content-around indicator">
<li>Corporation History</li>
<li class="blue">Product History</li>
</ul>
</div>
<div class="col-12">
<div class="h_s_c_o_w">
<div class="hs_i_wrapper history_scroll_pane">
<div class="hs_wrap_c historyscrollerPane" style="display: none;">
<ul class="count_li_item">
{% for row in rows %}
<li>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</li>
{% endfor %}
</ul>
<div class="strip_c_line">
<span></span>
</div>
</div>
<div class="hs_wrap_c historyscrollerPane">
<ul class="count_li_item">
{% for row in rows %}
<li class="blue">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</li>
{% endfor %}
</ul>
<div class="strip_c_line">
<span></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End: DIC corp History-->
\ 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