Commit 91b27d72 by Manzar Hussain

open positions

parent 899e669e
{#
/**
* @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 jo_l_wrapper">
<div class="row">
<div class="container">
<div class="row ">
<div class="col-md-12">
<div class="h_c_b_wrapper">
<h6 class="h_c_w_bnm">Open Positions</h6>
<p>Dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit.</p>
</div>
</div>
</div>
<div class="row card-grid cs_s_cb">
{% for row in rows %}
<div class="col-md-4 col-10">
<div class="card">
<div class="card-body">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_short_description }}'] }}
<p class="tx_btn_l">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ view_node }}'] }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="txt_btn_link text-center p-5">
<a href="/current-opening">View All Openings &nbsp;<i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
<!-- section code 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