Commit 6583eadc by Manzar Hussain

template delete

parent 42a0fdc0
{#
/**
* @file
* Default theme implementation of a container used to wrap child elements.
*
* Used for grouped form items. Can also be used as a theme wrapper for any
* renderable element, to surround it with a <div> and HTML attributes.
* See \Drupal\Core\Render\Element\RenderElement for more
* information on the #theme_wrappers render array property, and
* \Drupal\Core\Render\Element\container for usage of the container render
* element.
*
* Available variables:
* - attributes: HTML attributes for the containing element.
* - children: The rendered child elements of the container.
* - has_parent: A flag to indicate that the container has one or more parent
containers.
*
* @see template_preprocess_container()
*
* @ingroup themeable
*/
#}
{%
set classes = [
has_parent ? 'js-form-wrapper',
has_parent ? 'form-wrapper',
]
%}
{{ children }}
{#
/**
* @file
* Theme override for the basic structure of a single Drupal page.
*
* Variables:
* - logged_in: A flag indicating if user is logged in.
* - root_path: The root path of the current page (e.g., node, admin, user).
* - node_type: The content type for the current node, if the page is a node.
* - head_title: List of text elements that make up the head_title variable.
* May contain one or more of the following:
* - title: The title of the page.
* - name: The name of the site.
* - slogan: The slogan of the site.
* - page_top: Initial rendered markup. This should be printed before 'page'.
* - page: The rendered page markup.
* - page_bottom: Closing rendered markup. This variable should be printed after
* 'page'.
* - db_offline: A flag indicating if the database is offline.
* - placeholder_token: The token for generating head, css, js and js-bottom
* placeholders.
*
* @see template_preprocess_html()
*/
#}
{%
set body_classes = [
logged_in ? 'user-logged-in',
not root_path ? 'path-frontpage' : 'path-' ~ root_path|clean_class,
node_type ? 'page-node-type-' ~ node_type|clean_class,
db_offline ? 'db-offline',
]
%}
<!DOCTYPE html>
<html{{ html_attributes }}>
<head>
<head-placeholder token="{{ placeholder_token }}">
<title>{{ head_title|safe_join(' | ') }}</title>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<css-placeholder token="{{ placeholder_token }}">
<js-placeholder token="{{ placeholder_token }}">
</head>
<body{{ attributes.addClass(body_classes) }}>
{#
Keyboard navigation/accessibility link to main content section in
page.html.twig.
#}
<!-- change region container start -->
<div class="h_header_langBox">
<div class="h_header_langBox_overlay"></div>
<div class="h_header_langBox_box">
<ul class="h_pure_g">
<li>
<div class="h_mod_button">
<a href="https://www.dic-global.com/ja/" target=""><span>日本語</span><i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</li>
<li>
<div class="h_mod_button">
<a href="https://www.dic-global.com/en/" target=""><span>ENGLISH</span><i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</li>
<li>
<div class="h_mod_button">
<a href="https://www.dic-global.com/cn/" target=""><span>中文</span><i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</li>
<li>
<div class="h_mod_button">
<a href="https://www.sunchemical.com/"" target="_blank"><span>Sun Chemical</span><i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</li>
</ul>
</div>
</div>
<!-- change region container start -->
<a href="#main-content" class="visually-hidden focusable skip-link">
{{ 'Skip to main content'|t }}
</a>
{{ page_top }}
{{ page }}
{{ page_bottom }}
<js-bottom-placeholder token="{{ placeholder_token }}">
</body>
</html>
{#
/**
* @file
* Theme override to display a single Drupal page while offline.
*
* All available variables are mirrored in page.html.twig.
* Some may be blank but they are provided for consistency.
*
* @see template_preprocess_maintenance_page()
*/
#}
<div class="layout-container">
<header role="banner">
{% if logo %}
<a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home">
<img src="{{ logo }}" alt="{{ 'Home'|t }}"/>
</a>
{% endif %}
{% if site_name or site_slogan %}
<div class="name-and-slogan">
{% if site_name %}
<h1 class="site-name">
<a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home">{{ site_name }}</a>
</h1>
{% endif %}
{% if site_slogan %}
<div class="site-slogan">{{ site_slogan }}</div>
{% endif %}
</div>{# /.name-and-slogan #}
{% endif %}
</header>
<main role="main">
{% if title %}
<h1>{{ title }}</h1>
{% endif %}
{{ page.highlighted }}
{{ page.content }}
</main>
{% if page.sidebar_first %}
<aside class="layout-sidebar-first" role="complementary">
{{ page.sidebar_first }}
</aside>{# /.layout-sidebar-first #}
{% endif %}
{% if page.sidebar_second %}
<aside class="layout-sidebar-second" role="complementary">
{{ page.sidebar_second }}
</aside>{# /.layout-sidebar-second #}
{% endif %}
{% if page.footer %}
<footer role="contentinfo">
{{ page.footer }}
</footer>
{% endif %}
</div>{# /.layout-container #}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
{{ content }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
{{ content }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
<div class="container-fluid">
<div class="row">
<div class="container headercontainer">
<header class="h_o_c_b">
{{ page.header }}
{{ page.primary_menu }}
</header>
</div>
</div>
</div>
{{ page.content }}
{% if page.footer_top %}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row mb-5">
{{ page.footer_top }}
</div>
</div>
</div>
</div>
{% endif %}
{% if page.footer %}
<div class="container-fluid f_l_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_first }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_second }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_third }}
</div>
</div>
</div>
<div class="col-lg-3">
<div class="fl_c_b footer_newsletter_container">
{{ page.footer_fourth }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{{ page.footer_fifth }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
<div class="container-fluid">
<div class="row">
<div class="container headercontainer">
<header class="h_o_c_b">
{{ page.header }}
{{ page.primary_menu }}
</header>
</div>
</div>
</div>
{% if page.banner %}
<div class="b_o_c_b">
<div class="b_main_slider static_banner">
{{ page.banner }}
</div>
</div>
{% endif %}
<!-- breadcurmb start -->
<div class="container-fluid">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
{{ page.breadcrumb }}
</div>
</div>
</div>
</div>
</div>
<!-- breadcurmd end -->
{% if page.content_top %}
<div class="contentTop-section">
{{ page.content_top }}
</div>
{% endif %}
{# <div class="container-fluid spacerTB">
<div class="row"> #}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="a_s_w_c">
<div class="ls_i_c">
{% if page.sidebar_first %}
{{ page.sidebar_first }}
{% endif %}
{{ page.content }}
{% if page.sidebar_second %}
{{ page.sidebar_second }}
{% endif %}
</div>
</div>
</div>
</div>
</div>
{# </div>
</div> #}
<!-- <div class="layout-container">
<div class="layout-content">
{# {{ page.content }} #}
</div>{# /.layout-content #}
</div> -->
{% if page.content_bottom %}
</div class="contentBottom">
{{ page.content_bottom }}
</div>
{% endif %}
{% if page.footer_top %}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row mb-5">
{{ page.footer_top }}
</div>
</div>
</div>
</div>
{% endif %}
{% if page.footer %}
<div class="container-fluid f_l_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_first }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_second }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_third }}
</div>
</div>
</div>
<div class="col-lg-3">
<div class="fl_c_b footer_newsletter_container">
{{ page.footer_fourth }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{{ page.footer_fifth }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
<div class="container-fluid">
<div class="row">
<div class="container headercontainer">
<header class="h_o_c_b">
{{ page.header }}
{{ page.primary_menu }}
</header>
</div>
</div>
</div>
{% if page.banner %}
<div class="b_o_c_b">
<div class="b_main_slider static_banner">
{{ page.banner }}
</div>
</div>
{% endif %}
<!-- breadcurmb start -->
<div class="container-fluid">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
{{ page.breadcrumb }}
</div>
</div>
</div>
</div>
</div>
<!-- breadcurmd end -->
{% if page.content_top %}
<div class="contentTop-section">
{{ page.content_top }}
</div>
{% endif %}
{# <div class="container-fluid spacerTB">
<div class="row"> #}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row">
<div class="col col-md-8 col-lg-9">
{{ page.content }}
</div>
<div class="col-md-4 col-lg-3">
<div class="nw_right_c_b">
{% if page.sidebar_second %}
{{ page.sidebar_second }}
{% endif %}
</div>
</div>
</div>
</div>
</div>
</div>
{# </div>
</div> #}
<!-- <div class="layout-container">
<div class="layout-content">
{# {{ page.content }} #}
</div>{# /.layout-content #}
</div> -->
{% if page.content_bottom %}
</div class="contentBottom">
{{ page.content_bottom }}
</div>
{% endif %}
{% if page.footer_top %}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row mb-5">
{{ page.footer_top }}
</div>
</div>
</div>
</div>
{% endif %}
{% if page.footer %}
<div class="container-fluid f_l_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_first }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_second }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_third }}
</div>
</div>
</div>
<div class="col-lg-3">
<div class="fl_c_b footer_newsletter_container">
{{ page.footer_fourth }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{{ page.footer_fifth }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
<div class="container-fluid">
<div class="row">
<div class="container headercontainer">
<header class="h_o_c_b">
{{ page.header }}
{{ page.primary_menu }}
</header>
</div>
</div>
</div>
{% if page.banner %}
<div class="b_o_c_b">
<div class="b_main_slider static_banner">
{{ page.banner }}
</div>
</div>
{% endif %}
<!-- breadcurmb start -->
<div class="container-fluid">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
{{ page.breadcrumb }}
</div>
</div>
</div>
</div>
</div>
<!-- breadcurmd end -->
{% if page.content_top %}
<div class="contentTop-section">
{{ page.content_top }}
</div>
{% endif %}
{# <div class="container-fluid spacerTB">
<div class="row"> #}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="a_s_w_c">
<div class="ls_i_c">
{% if page.sidebar_first %}
{{ page.sidebar_first }}
{% endif %}
{{ page.content }}
</div>
</div>
<!-- bottom container box end -->
</div>
</div>
</div>
<!-- content section end -->
{{ page.content_full_width }}
{% if page.sidebar_second %}
{{ page.sidebar_second }}
{% endif %}
{# </div>
</div> #}
<!-- <div class="layout-container">
<div class="layout-content">
{# {{ page.content }} #}
</div>{# /.layout-content #}
</div> -->
{% if page.content_bottom %}
</div class="contentBottom">
{{ page.content_bottom }}
</div>
{% endif %}
{% if page.footer_top %}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row mb-5">
{{ page.footer_top }}
</div>
</div>
</div>
</div>
{% endif %}
{% if page.footer %}
<div class="container-fluid f_l_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_first }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_second }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_third }}
</div>
</div>
</div>
<div class="col-lg-3">
<div class="fl_c_b footer_newsletter_container">
{{ page.footer_fourth }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{{ page.footer_fifth }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
<div class="container-fluid">
<div class="row">
<div class="container headercontainer">
<header class="h_o_c_b">
{{ page.header }}
{{ page.primary_menu }}
</header>
</div>
</div>
</div>
{% if page.banner %}
<div class="b_o_c_b">
<div class="b_main_slider static_banner">
{{ page.banner }}
</div>
</div>
{% endif %}
<!-- breadcurmb start -->
<div class="container-fluid">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
{{ page.breadcrumb }}
</div>
</div>
</div>
</div>
</div>
<!-- breadcurmd end -->
{% if page.content_top %}
<div class="contentTop-section">
{{ page.content_top }}
</div>
{% endif %}
{# <div class="container-fluid spacerTB">
<div class="row"> #}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="a_s_w_c">
<div class="ls_i_c">
{% if page.sidebar_first %}
{{ page.sidebar_first }}
{% endif %}
{{ page.content }}
</div>
</div>
<!-- bottom container box end -->
</div>
</div>
</div>
<!-- content section end -->
{% if page.sidebar_second %}
{{ page.sidebar_second }}
{% endif %}
{# </div>
</div> #}
<!-- <div class="layout-container">
<div class="layout-content">
{# {{ page.content }} #}
</div>{# /.layout-content #}
</div> -->
{% if page.content_bottom %}
</div class="contentBottom">
{{ page.content_bottom }}
</div>
{% endif %}
{% if page.footer_top %}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row mb-5">
{{ page.footer_top }}
</div>
</div>
</div>
</div>
{% endif %}
{% if page.footer %}
<div class="container-fluid f_l_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_first }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_second }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_third }}
</div>
</div>
</div>
<div class="col-lg-3">
<div class="fl_c_b footer_newsletter_container">
{{ page.footer_fourth }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{{ page.footer_fifth }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
<div class="container-fluid">
<div class="row">
<div class="container headercontainer">
<header class="h_o_c_b">
{{ page.header }}
{{ page.primary_menu }}
</header>
</div>
</div>
</div>
{% if page.banner %}
<div class="b_o_c_b">
<div class="b_main_slider static_banner">
{{ page.banner }}
</div>
</div>
{% endif %}
<!-- breadcurmb start -->
<div class="container-fluid">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
{{ page.breadcrumb }}
</div>
</div>
</div>
</div>
</div>
<!-- breadcurmd end -->
{% if page.content_top %}
<div class="contentTop-section">
{{ page.content_top }}
</div>
{% endif %}
{# <div class="container-fluid spacerTB">
<div class="row"> #}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="a_s_w_c">
<div class="ls_i_c">
{% if page.sidebar_first %}
{{ page.sidebar_first }}
{% endif %}
{{ page.content }}
</div>
</div>
<!-- bottom container box end -->
</div>
</div>
</div>
<!-- content section end -->
{% if page.sidebar_second %}
{{ page.sidebar_second }}
{% endif %}
{# </div>
</div> #}
<!-- <div class="layout-container">
<div class="layout-content">
{# {{ page.content }} #}
</div>{# /.layout-content #}
</div> -->
{% if page.content_bottom %}
</div class="contentBottom">
{{ page.content_bottom }}
</div>
{% endif %}
{% if page.footer_top %}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row mb-5">
{{ page.footer_top }}
</div>
</div>
</div>
</div>
{% endif %}
{% if page.footer %}
<div class="container-fluid f_l_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_first }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_second }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_third }}
</div>
</div>
</div>
<div class="col-lg-3">
<div class="fl_c_b footer_newsletter_container">
{{ page.footer_fourth }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{{ page.footer_fifth }}
{#
/**
* @file
* Default theme implementation for page titles.
*
* Available variables:
* - title_attributes: HTML attributes for the page title element.
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the main title tag that appears in the template.
* - title: The page title, for use in the actual content.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the main title tag that appears in the template.
*
* @ingroup themeable
*/
#}
{{ title_prefix }}
{% if title %}
<h1{{ title_attributes }} style="display: none;">{{ title }}</h1>
{% endif %}
{{ title_suffix }}
{#
/**
* @file
* Theme override to display a single page.
*
* The doctype, html, head and body tags are not in this template. Instead they
* can be found in the html.html.twig template in this directory.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation. Will usually be
* "/" unless you have installed Drupal in a sub-directory.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access
* administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when
* linking to the front page. This includes the language domain or prefix.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node, if there is an automatically-loaded node
* associated with the page and the node ID is the second argument in the
* page's path (e.g. node/12345 and node/12345/revisions, but not
* comment/reply/12345).
*
* Regions:
* - page.header: Items for the header region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
<div class="container-fluid">
<div class="row">
<div class="container headercontainer">
<header class="h_o_c_b">
{{ page.header }}
{{ page.primary_menu }}
</header>
</div>
</div>
</div>
{% if page.banner %}
<div class="b_o_c_b">
<div class="b_main_slider static_banner">
{{ page.banner }}
</div>
</div>
{% endif %}
<!-- breadcurmb start -->
<div class="container-fluid">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
{{ page.breadcrumb }}
</div>
</div>
</div>
</div>
</div>
<!-- breadcurmd end -->
{% if page.content_top %}
<div class="contentTop-section">
{{ page.content_top }}
</div>
{% endif %}
{# <div class="container-fluid spacerTB">
<div class="row"> #}
{% if page.sidebar_first %}
{{ page.sidebar_first }}
{% endif %}
{{ page.content }}
{% if page.sidebar_second %}
{{ page.sidebar_second }}
{% endif %}
{# </div>
</div> #}
<!-- <div class="layout-container">
<div class="layout-content">
{# {{ page.content }} #}
</div>{# /.layout-content #}
</div> -->
{% if page.content_bottom %}
</div class="contentBottom">
{{ page.content_bottom }}
</div>
{% endif %}
{% if page.footer_top %}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row mb-5">
{{ page.footer_top }}
</div>
</div>
</div>
</div>
{% endif %}
{% if page.footer %}
<div class="container-fluid f_l_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_first }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_second }}
</div>
<div class="col-lg-3 col-12 f_cb_m">
{{ page.footer_third }}
</div>
</div>
</div>
<div class="col-lg-3">
<div class="fl_c_b footer_newsletter_container">
{{ page.footer_fourth }}
</div>
</div>
</div>
</div>
</div>
</div>
{% endif %}
{{ page.footer_fifth }}
{#
/**
* @file
* Theme override to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region <div>.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*/
#}
{%
set classes = [
'region',
'region-' ~ region|clean_class,
]
%}
{% if content %}
{{ content }}
{% endif %}
{#
/**
* @file
* Theme override to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region <div>.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*/
#}
{%
set classes = [
'region',
'region-' ~ region|clean_class,
]
%}
{% if content %}
{{ content }}
{% endif %}
{#
/**
* @file
* Default theme implementation for main view template.
*
* Available variables:
* - attributes: Remaining HTML attributes for the element.
* - css_name: A CSS-safe version of the view name.
* - css_class: The user-specified classes names, if any.
* - header: The optional header.
* - footer: The optional footer.
* - rows: The results of the view query, if any.
* - empty: The content to display if there are no rows.
* - pager: The optional pager next/prev links to display.
* - exposed: Exposed widget form/info to display.
* - feed_icons: Optional feed icons to display.
* - more: An optional link to the next page of results.
* - title: Title of the view, only used when displaying in the admin preview.
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the view title.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the view title.
* - attachment_before: An optional attachment view to be displayed before the
* view content.
* - attachment_after: An optional attachment view to be displayed after the
* view content.
* - dom_id: Unique id for every view being printed to give unique class for
* Javascript.
*
* @see template_preprocess_views_view()
*
* @ingroup themeable
*/
#}
{%
set classes = [
dom_id ? 'js-view-dom-id-' ~ dom_id,
]
%}
{{ title_prefix }}
{{ title }}
{{ title_suffix }}
{% if header %}
<header>
{{ header }}
</header>
{% endif %}
{% if exposed %}
<div {{ attributes.addClass(classes) }}>
{{ exposed }}
</div>
{% endif %}
{{ attachment_before }}
{% if rows -%}
{{ rows }}
{% elseif empty -%}
{{ empty }}
{% endif %}
{{ pager }}
{{ attachment_after }}
{{ more }}
{% if footer %}
<footer>
{{ footer }}
</footer>
{% endif %}
{{ feed_icons }}
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<img src="{{ output -}}" class="b_desktop_view" alt="Color &amp; Comfort" />
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<img src="{{ output -}}" class="b_mobile_view" alt="Color &amp; Comfort" />
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<iframe width="100%" src="{{ output -}}" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" autoplay=1 allowfullscreen></iframe>
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<img src="{{ output -}}" class="b_desktop_view" alt="Color &amp; Comfort" />
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<img src="{{ output -}}" class="b_mobile_view" alt="Color &amp; Comfort" />
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<img src="{{ output -}}" class="b_mobile_view" />
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<img src="{{ output -}}" class="b_desktop_view" />
{#
/**
* @file
* Theme override for a single field in a view.
*
* Available variables:
* - view: The view that the field belongs to.
* - field: The field handler that can process the input.
* - row: The raw result of the database query that generated this field.
* - output: The processed output that will normally be used.
*
* When fetching output from the row this construct should be used:
* data = row[field.field_alias]
*
* The above will guarantee that you'll always get the correct data, regardless
* of any changes in the aliasing that might happen if the view is modified.
*
* @see template_preprocess_views_view_field()
*/
#}
<iframe width="100%" src="{{ output -}}" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
{#
/**
* @file
* Theme override to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*/
#}
{{ fields.body.content }}
{#
/**
* @file
* Theme override to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*/
#}
<div class="b_slide_item">
{{ fields.field_banner_image.content }}
{{ fields.field_mobile_banner_image.content }}
<div class="s_b_o_c">
<div class="container">
<div class="s_c_iw">
<div class="sb_ibcd">
<h1 class="s_p_h_c">{{ fields.field_banner_title.content }}</h1>
{{ fields.field_banner_text.content }}
</div>
</div>
</div>
</div>
</div>
{#
/**
* @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
* Theme override to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*/
#}
{{ fields.body.content }}
{#
/**
* @file
* Theme override to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*/
#}
<div class="cs_inner_item">
<div class="cs_containe_i_w">
<a href="#" class="cs_img_bc" tabindex="0">
<span class="cs_c1_m">Management &amp; IR</span>
{{ fields.field_news_image .content }}
</a>
<div class="cs_text_cib">
<div class="cs_wc_b">
<div class="cs_iwcb">
<i class="fa fa-clock-o" aria-hidden="true"></i>&nbsp; {{ fields.field_date.content}}
</div>
<span>TSE Filings</span>
</div>
<h6 class="cs_hcwbm">
<a href="" tabindex="0">{{ fields.title.content }}</a>
</h6>
<!-- <p>
DIC Corporation announced on August 29, 2019, that
it had resolved to acquire the shares and assets.
</p> -->
</div>
</div>
</div>
{#
/**
* @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
* Theme override to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*/
#}
{# {{ fields.body.content }} #}
{#
/**
* @file
* Theme override to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*/
#}
<div class="b_slide_item">
{{ fields.field_banner_image.content }}
{{ fields.field_mobile_banner_image.content }}
<div class="s_b_o_c">
<div class="container">
<div class="s_c_iw">
<div class="sb_ibcd">
<h1 class="s_p_h_c">{{ fields.field_banner_title.content }}</h1>
{{ fields.field_banner_text.content }}
</div>
</div>
</div>
</div>
</div>
{#
/**
* @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
* Theme override to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*/
#}
{{ fields.body.content }}
{#
/**
* @file
* Default view template to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*
* @ingroup themeable
*/
#}
<div class="container-fluid spacerTB m_c_s_d_i">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="h_c_b_wrapper">
<h2 class="h_c_w_bnm">Packaging</h2>
<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.</p>
</div>
<!--product list start-->
<div class="row">
{% for row in rows %}
<div class="col-md-4">
<section class="ap-grid-block">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ name }}'] }}
<div class="ap-slider">
<div class="ap-grid-item">
<figure>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_icon }}'] }}</figure>
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ description__value }}'] }}</p>
</div>
<div class="ap-grid-item">
<figure>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_icon }}'] }}</figure>
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ description__value }}'] }}</p>
</div>
<div class="ap-grid-item">
<figure>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_icon }}'] }}</figure>
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ description__value }}'] }}</p>
</div>
</div>
</section>
</div>
{% endfor %}
</div>
<!--product list end-->
</div>
</div>
</div>
</div>
</div>
{#
/**
* @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 cs_bnmv cs_box_shadow life_of_dic">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cs_w_b">
<h1 class="c_heading_b text-center">Life at DIC</h1>
<div class="cs_slider_wp">
<div class="cs_s_cb row cs_team_slider_container">
{% for row in rows %}
<div class="cs_item_b col-10 col-md-4">
<div class="cs_inner_item">
<div class="cs_containe_i_w">
<a href="#" class="cs_img_bc">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_team_image }}'] }}
</a>
<div class="cs_text_cib">
<h6 class="cs_hcwbm">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
</h6>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_team_position }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="cs_btn_c_b">
<a href="/life-at-dic">View All &nbsp;<i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ 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
*/
#}
<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
{#
/**
* @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 video_container bg_l_gray">
<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">Videos</h6>
<p>Learn more about DIC India and its manufacturing operations by taking a dive into our latest videos.</p>
</div>
<div class="v_c_o_b">
<div class="v_i_c_b">
<div class="slider rbc_slider_b">
{% for row in rows %}
<div class="rbc_b_t">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_video_link }}'] }}
</div>
{% endfor %}
</div>
<div class="slider rbc_slider_s">
{% for row in rows %}
<div class="rbc_s_t">
<div class="v_b_c_b">
<div class="v_t_ob">
<div class="v_t_i_b">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_video_image }}'] }}
<div class="y_t_ic">
<img src="/themes/custom/envigo/images/youtube.png" />
</div>
</div>
<div class="v_t_c_b">
<div class="vcb_inner">
<p>DIC India Ink Masters App</p>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="cs_btn_c_b">
<a href="/videos">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
{#
/**
* @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 ns_spacerB news_event_container">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="v_c_o_b">
<div class="v_i_c_b">
<div class="slider event_slider_b">
{% for row in rows %}
<div class="rbc_b_t">
<div class="event_c_b">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_event_image }}'] }}
<div class="e_c_txt_b">
<div class="eci_txt_b">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
<div class="btn_e_rm">
<a href="">Read More <i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="slider event_slider_s">
{% for row in rows %}
<div class="rbc_s_t">
<div class="v_b_c_b">
<div class="v_t_ob">
<h6 class="e_h_cb">DIC India consolidates supply chain in printing hub of Sivakasi</h6>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="cs_btn_c_b">
<a href="" style="display: none;">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
{#
/**
* @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_gray_2 spacerTB cs_box_shadow">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cs_w_b">
<!-- <h1 class="c_heading_b text-center">Business & Products</h1> -->
<div class="cs_slider_wp">
<div class="cs_s_cb row cs_nwc_b b_slider_m_c_box">
{% for row in rows %}
<div class="cs_item_b col-10 col-md-3">
<div class="cs_inner_item">
<div class="cs_iwcb">
<a href="#" class="cs_img_c_b">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_global_image }}'] }}
</a>
<div class="cs_hcb hc_ww">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_global_url }}'] }}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ 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
*/
#}
<div class="container-fluid spacerTB">
<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">DIC Journey</h6>
<p>Morbi vestibulum facilisis nisi, sed mollis massa ultricies in. Aliquam erat volutpat. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
<div class="h_s_c_o_w">
<div class="hs_i_wrapper">
<div class="hs_wrap_c scroll-pane">
<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 }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_history_image }}'] }}
</li>
{% endfor %}
</ul>
<div class="strip_c_line">
<span></span>
</div>
<ul class="down_c_b">
{% 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 }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_history_image }}'] }}
</li>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ 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
*/
#}
<div class="container-fluid spacerTB cs_s_i_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cs_w_b">
<h1 class="c_heading_b text-center">Search by Industry</h1>
<div class="cs_slider_wp">
<div class="cs_s_cb row">
{% for row in rows %}
<div class="cs_item_b col-6 col-sm-6 col-md-3">
<div class="cs_inner_item">
<div class="cs_s_inwb">
<div class="cs_icb">
<span>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_industry_icon }}'] }} </span>
</div>
<div class="cs_tcb">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="cs_btn_c_b" style="display: none;">
<a href="">View All Industries &nbsp;<i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ 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
*/
#}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row">
{% for row in rows %}
<div class="col-md-4 col-sm-6 nf_oc_b">
<div class="box_shd_d">
<div class="nf_c_w">
<div class="nf_i_c_w">
<div class="nf_v_c_b">
<span> {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_icon }}'] }}</span>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ name }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ description__value }}'] }}
</div>
<div class="nf_h_w_c">
<div class="nf_ic_box">
<span> {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_icon }}'] }}</span>
<h6> {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ name }}'] }}</h6>
<p> <a href="">Annual Report <img src="/themes/custom/envigo/images/pdf.png" /></a> </p>
<p> <a href="">Extract of Annual Return (Form- MGT-9) FY 2018 <img src="/themes/custom/envigo/images/pdf.png" /></a> </p>
<p> <a href="">Annual Report 2017 <img src="/themes/custom/envigo/images/pdf.png" /> </a> </p>
<div class="nf_btn_c">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ view_node }}'] }}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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
*/
#}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<h1 class="ineves_det_h_m">Annual Results</h1>
<div class="a_r_c_b">
<div class="row id_spacer_con">
{% for row in rows %}
<div class="id_item_con col-12 col-sm-4 col-md-3">
<div class="i_c_b_m_p">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_pdf_url }}'] }}" class="hyper_link" target="_blank">
<h5 class="id_c_tc">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_year }}'] }}</h5>
<div class="img_id_cb">
<img src="/themes/custom/envigo/images/pdf-download.png" />
</div>
<div class="id_txt_con">
<h6 class="id_hc_b">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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">
<h5 class="sb_h_c_b box_c_dd_menu">Categories<span><i class="fa fa-angle-down" aria-hidden="true"></i></span></h5>
<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
{#
/**
* @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
*/
#}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<h1 class="ineves_det_h_m pr_padd">Quarterly Results</h1>
<div class="id_filter_con">
<div class="id_inner_filter-detail">
<select id="dataFilter">
<option value="2025">2025</option>
<option value="2024">2024</option>
<option value="2023">2023</option>
<option value="2022">2022</option>
<option value="2021">2021</option>
<option value="2020">2020</option>
<option value="2019">2019</option>
<option value="2018">2018</option>
<option value="2017">2017</option>
<option value="2016">2016</option>
<option value="2015">2015</option>
<option value="2014">2014</option>
<option value="2013">2013</option>
<option value="2012">2012</option>
<option value="2011">2011</option>
</select>
</div>
</div>
<div class="a_r_c_b">
<div class="row id_spacer_con id_filter_common id_filter_2020">
{% for row in rows %}
<div class="id_item_con col-12 col-sm-4 col-md-3">
<div class="i_c_b_m_p">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_pdf_url }}'] }}" class="hyper_link" target="_blank">
<h5 class="id_c_tc">Quarter {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ counter }}'] }} </h5>
<div class="img_id_cb">
<img src="/themes/custom/envigo/images/pdf-download.png" />
</div>
<div class="id_txt_con">
<h6 class="id_hc_b">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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
*/
#}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<h1 class="ineves_det_h_m">Corporate governance</h1>
<div class="a_r_c_b">
<div class="row id_spacer_con">
{% for row in rows %}
<div class="id_item_con col-12 col-sm-4 col-md-3">
<div class="i_c_b_m_p">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_pdf_url }}'] }}" class="hyper_link" target="_blank">
<h5 class="id_c_tc">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_year }}'] }}</h5>
<div class="img_id_cb">
<img src="/themes/custom/envigo/images/pdf-download.png" />
</div>
<div class="id_txt_con">
<h6 class="id_hc_b">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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
*/
#}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<h1 class="ineves_det_h_m pr_padd">Corporate News and announcement</h1>
<div class="id_filter_con">
<div class="id_inner_filter-detail">
<select id="dataFilter">
<option value="2022">2022</option>
<option value="2021">2021</option>
<option value="2020">2020</option>
<option value="2019">2019</option>
<option value="2018">2018</option>
<option value="2017">2017</option>
<option value="2016">2016</option>
<option value="2015">2015</option>
</select>
</div>
</div>
<div class="a_r_c_b">
<div class="row id_spacer_con">
{% for row in rows %}
<div class="id_item_con col-12 col-sm-4 col-md-3">
<div class="i_c_b_m_p">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_pdf_url }}'] }}" class="hyper_link" target="_blank">
<h5 class="id_c_tc">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_year }}'] }}</h5>
<div class="img_id_cb">
<img src="/themes/custom/envigo/images/pdf-download.png" />
</div>
<div class="id_txt_con">
<h6 class="id_hc_b">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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
*/
#}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<h1 class="ineves_det_h_m">Policies</h1>
<div class="a_r_c_b">
<div class="row id_spacer_con">
{% for row in rows %}
<div class="id_item_con col-12 col-sm-4 col-md-3">
<div class="i_c_b_m_p">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_pdf_url }}'] }}" class="hyper_link" target="_blank">
<h5 class="id_c_tc">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_year }}'] }}</h5>
<div class="img_id_cb">
<img src="/themes/custom/envigo/images/pdf-download.png" />
</div>
<div class="id_txt_con">
<h6 class="id_hc_b">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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
*/
#}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<h1 class="ineves_det_h_m">Shareholding pattern</h1>
<div class="id_filter_con">
<div class="id_inner_filter-detail">
<select id="dataFilter">
<option value="2025">2025</option>
<option value="2024">2024</option>
<option value="2023">2023</option>
<option value="2022">2022</option>
<option value="2021">2021</option>
<option value="2020">2020</option>
<option value="2019">2019</option>
<option value="2018">2018</option>
<option value="2017">2017</option>
<option value="2016">2016</option>
<option value="2015">2015</option>
<option value="2014">2014</option>
<option value="2013">2013</option>
<option value="2012">2012</option>
<option value="2011">2011</option>
</select>
</div>
</div>
<div class="a_r_c_b">
<div class="row id_spacer_con">
{% for row in rows %}
<div class="id_item_con col-12 col-sm-4 col-md-3">
<div class="i_c_b_m_p">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_pdf_url }}'] }}" class="hyper_link" target="_blank">
<h5 class="id_c_tc">Quarter {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ counter }}'] }}</h5>
<div class="img_id_cb">
<img src="/themes/custom/envigo/images/pdf-download.png" />
</div>
<div class="id_txt_con">
<h6 class="id_hc_b">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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
*/
#}
{%
set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
<h1 class="ineves_det_h_m">Unclaimed dividend details</h1>
<h3 class="hm_cb_d">Nodal officer</h3>
<p>Members may claim refund of their aforesaid dividend from the IEPF Authority by following the procedure prescribed under the IEPF Authority (Accounting, Audit, Transfer and Refund) Rules, 2016. Mr. Raghav Shukla, General Manager (Legal) &amp; Company Secretary, is the Nodal Officer of the Company for the purpose of verification of such claims. He may be contacted at 0120-6361420 or raghav.shukla@dic.co.in for any assistance in this regard.</p>
<div class="a_r_c_b">
<div class="row id_spacer_con">
{% for row in rows %}
<div class="id_item_con col-12 col-sm-4 col-md-3">
<div class="i_c_b_m_p">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_pdf_url }}'] }}" class="hyper_link" target="_blank">
<h5 class="id_c_tc">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_year }}'] }}</h5>
<div class="img_id_cb">
<img src="/themes/custom/envigo/images/pdf-download.png" />
</div>
<div class="id_txt_con">
<h6 class="id_hc_b">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
\ 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
*/
#}
<!-- section code start -->
<div class="container-fluid spacerTB jo_l_wrapper jo_l_i_w">
<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">Current Jobs</h6>
</div>
</div>
</div>
<div class="row card-grid cs_s_cb">
<!-- repeater code start -->
{% for row in rows %}
<div class="col-md-6 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 }}'] }}
<div class="j-m-info">
<span class="j-m-date">
Posted on <b>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_job_post_date }}'] }}</b>
</span>
<span class="j-m-pos">
Position <b>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_position }}'] }}</b>
</span>
<span class="j-m-loc">
Location <b>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_location }}'] }}</b>
</span>
</div>
<p class="tx_btn_l">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ view_node }}'] }}{# <i class="fa fa-angle-right" aria-hidden="true"></i> #}
</p>
</div>
</div>
</div>
{% endfor %}
<!-- repeater code start -->
</div>
</div>
</div>
</div>
<!-- section code end -->
\ No newline at end of file
{#
/**
* @file
* Default view template to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*
* @ingroup themeable
*/
#}
<div class="container-fluid bg_n_img spacerTB cs_c_hb_d" style="background: url(/themes/custom/envigo/images/use_bg_pc.jpg);">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cs_w_b">
<h1 class="c_heading_b text-center">Search by Application</h1>
<div class="cs_slider_wp">
<div class="cs_s_cb row cs_application_c">
{% for row in rows %}
<div class="cs_item_b col-10 col-md-6 col-lg-4 col-xl-3">
<div class="cs_inner_item">
<a href="" class="cs_a_con_ob">
<div class="cs_a_c_w">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_application_image }}'] }}
</div>
<div class="cs_overlay_c_b">
<div class="cs_icbnd">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_application_short_descript }}'] }}</p>
</div>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="cs_btn_c_b">
<a href="/application">View All Applications &nbsp;<i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section code end -->
{#
/**
* @file
* Default view template to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*
* @ingroup themeable
*/
#}
<div class="container-fluid bg_l_gray spacerTB cs_box_shadow">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cs_w_b">
<h1 class="c_heading_b text-center">Business & Products</h1>
<div class="cs_slider_wp">
<div class="cs_s_cb row center_dt_container">
{% for row in rows %}
<div class="cs_item_b col-10 col-md-4">
<div class="cs_inner_item">
<div class="cs_iwcb">
<a href="#" class="cs_img_c_b">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_image }}'] }}
</a>
<div class="cs_hcb">
<h6 class="cs_hgbc cs_c1">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ name }}'] }}</h6>
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ description__value }}'] }}
</p>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{#
/**
* @file
* Default view template to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*
* @ingroup themeable
*/
#}
<div class="container-fluid ls_spacerB">
<div class="row">
<div class="container">
<!-- bottom container box start -->
<div class="a_s_w_c">
<div class="ls_i_c">
{# <div class="ls_l_con_b">
<div class="la_sb_l">
<h5 class="sb_h_c_b box_c_dd_menu">About Us <span><i class="fa fa-angle-down" aria-hidden="true"></i></span></h5>
<div class="ls_sbmenu sb_dd_m_data">
<ul>
<li><a href="/about-us">Company Profile</a></li>
<li><a href="/leadership">Leadership</a></li>
<li><a href="/history">History</a></li>
<li><a href="">Research & Development</a></li>
<li><a href="">Manufacturing</a></li>
<li><a href="/esh-quality">ESH & Quality</a></li>
<li><a href="/csr">CSR</a></li>
<li><a href="">Global Network</a></li>
</ul>
</div>
</div>
</div> #}
<div class="ls_r_con_b full_width_100">
<div class="row_slider_dat cs_s_cb ls_t_c_slider">
{% for row in rows %}
<div class="col-10 col-md-4 ls_slider_bottom">
<div class="ls_s_c_b">
<div class="ls_i_s_c_b">
<div class="ls_img_cb">
<span>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_person_image }}'] }}
</span>
<div class="s_m_l_c">
<a href=""><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="ls_c_content_b">
<h4 class="c_h_cb"> {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h4>
<span>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_person_position }}'] }}</span>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
<!-- bottom container box end -->
</div>
</div>
</div>
{#
/**
* @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 cs_bnmv cs_box_shadow">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cs_w_b">
<h1 class="c_heading_b text-center">DIC News</h1>
<div class="cs_slider_wp">
<div class="cs_s_cb row {% if rows|length > 3 %}
cs_slider_container
{% else %}
center_dt_container
{% endif %}
">
{% for row in rows %}
<div class="cs_item_b col-10 col-md-4">
<div class="cs_inner_item">
<div class="cs_containe_i_w">
<a href="#" class="cs_img_bc">
<span class="cs_c1_m">Management & IR</span>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_news_image }}'] }}
</a>
<div class="cs_text_cib">
<div class="cs_wc_b">
<div class="cs_iwcb">
<i class="fa fa-clock-o" aria-hidden="true"></i>&nbsp; {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_date }}'] }}
</div>
<span>TSE Filings</span>
</div>
<h6 class="cs_hcwbm">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
</h6>
<p>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</p>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="cs_btn_c_b">
<a href="/news">View All &nbsp;<i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ 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
*/
#}
<div class="ls_r_con_b">
<div class="cs_slider_wp">
<div class="cs_s_cb row">
{% for row in rows %}
<div class="cs_item_b col-10 col-md-6 col-xl-4">
<div class="cs_inner_item">
<div class="cs_containe_i_w">
<a href="#" class="cs_img_bc">
<span class="cs_c1_m">Management &amp; IR</span>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_news_image }}'] }}
</a>
<div class="cs_text_cib">
<div class="cs_wc_b">
<div class="cs_iwcb">
<i class="fa fa-clock-o" aria-hidden="true"></i>&nbsp; {{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_date }}'] }}
</div>
<span>TSE Filings</span>
</div>
<h6 class="cs_hcwbm">
<a href="">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</a>
</h6>
<p>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_short_description }}'] }}
</p>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
\ 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">
<h5 class="sb_h_c_b box_c_dd_menu">Categories<span><i class="fa fa-angle-down" aria-hidden="true"></i></span></h5>
<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
{#
/**
* @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
{#
/**
* @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 ns_spacerB">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="p_masarny grid row">
{% for row in rows %}
<div class="grid-item">
<a href="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_image_1 }}'] }}" data-lightbox="image-1" data-title="{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_image }}'] }}
<div class="grit_itm_inner">
<h5>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h5>
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}</p>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
\ No newline at end of file
{#
/**
* @file
* Default view template to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*
* @ingroup themeable
*/
#}
<div class="container-fluid spacerTB testimonial_c_b">
<div class="row">
<div class="container">
<div class="tm_c_o_b">
<div class="tm_h_c">
<h2 class="c_heading_b">Testimonials</h2>
<p>We serve our clients with the best of our capacity</p>
</div>
<div class="tm_s_c_b">
<div class="tm_m_b_i tm_slider_container">
{% for row in rows %}
<div class="tm_i_item">
<div class="tm_icbm">
<div class="tm_item_con">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</div>
<div class="tm_m_name">
<h6 class="tm_main_h">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_person_position }}'] }}</p>
<ul>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star" aria-hidden="true"></i></li>
<li><i class="fa fa-star-half" aria-hidden="true"></i></li>
</ul>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
{#
/**
* @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">
<h5 class="sb_h_c_b box_c_dd_menu">Categories<span><i class="fa fa-angle-down" aria-hidden="true"></i></span></h5>
<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
{#
/**
* @file
* Default view template to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*
* @ingroup themeable
*/
#}
<div class="container-fluid bg_l_gray spacerTB cs_bnmv cs_box_shadow card_s_page">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="cs_w_b">
<h2 class="c_heading_b">Search by Products</h2>
<div class="cs_slider_wp">
<div class="cs_s_cb row">
{% for row in rows %}
<div class="cs_item_b col-10 col-md-4">
<div class="cs_inner_item">
<div class="cs_containe_i_w">
<a href="#" class="cs_img_bc">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_image }}'] }}
</a>
<div class="cs_text_cib">
<h6 class="cs_hcwbm">
<a href="">{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ name }}'] }}</a>
</h6>
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ description__value }}'] }}
</p>
</div>
<div class="btn_r_m_con">
<a href="">Read More <i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="cs_btn_c_b">
<a href="">View All &nbsp;<i class="fa fa-angle-right" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{#
/**
* @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 slider_m_c_b">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="p_c_slider">
<div class="inner_m_slider slider_strip_container">
{% for row in rows %}
<div class="c_item_slide">
<h6>Recently Updated</h6>
<div class="row">
<div class="col">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</div>
<div class="btn_c_b_mn">
<a href="">Download PDF &nbsp; <img src="/themes/custom/envigo/images/pdf.png" /></a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ 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
*/
#}
<!-- section code start -->
<div class="nw_blog_c_b">
<div class="nw_p_i_c">
{{ title_prefix }}
{% if label %}
<h5>{{ label }}</h5>
{% endif %}
{{ title_suffix }}
{% for row in rows %}
<div class="cs_s_cb">
<div class="nw_r_p_ci">
<a href="" class="">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_news_image }}'] }}
</a>
<div class="nw_p_box">
<h6>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</h6>
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ view_node }}'] }}
</div>
</div>
</div>
{% endfor %}
</div>
</div>
<!-- section code end -->
\ 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
*/
#}
<div class="b_o_c_b">
<div class="b_main_slider b_m_header">
{% for row in rows %}
<div class="b_slide_item">
<a href="#">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_slider_image }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_mobile_image }}'] }}
</a>
</div>
{% endfor %}
</div>
<div class="b_ticker_o_c">
<div class="b_ticker b_t_header">
{% for row in rows %}
<div class="b_slide_ticker">
<a href="#">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}
</a>
</div>
{% endfor %}
</div>
</div>
</div>
\ No newline at end of file
{#
/**
* @file
* Default view template to display all the fields in a row.
*
* Available variables:
* - view: The view in use.
* - fields: A list of fields, each one contains:
* - content: The output of the field.
* - raw: The raw data for the field, if it exists. This is NOT output safe.
* - class: The safe class ID to use.
* - handler: The Views field handler controlling this field.
* - inline: Whether or not the field should be inline.
* - wrapper_element: An HTML element for a wrapper.
* - wrapper_attributes: List of attributes for wrapper element.
* - separator: An optional separator that may appear before a field.
* - label: The field's label text.
* - label_element: An HTML element for a label wrapper.
* - label_attributes: List of attributes for label wrapper.
* - label_suffix: Colon after the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - has_label_colon: A boolean indicating whether to display a colon after
* the label.
* - element_type: An HTML element for the field content.
* - element_attributes: List of attributes for HTML element for field content.
* - row: The raw result from the query, with all data it fetched.
*
* @see template_preprocess_views_view_fields()
*
* @ingroup themeable
*/
#}
<div class="container-fluid spacerTB">
<div class="row">
<div class="container">
<div class="row">
<div class="col-12">
<div class="row e-r-w-a">
<div class="col-12 col-sm-6">
<h5 class="h_c_w_bnm">Our Employess Speak</h5>
<section class="e-r-slider">
{% for row in rows %}
<div class="e-r-item">
<p class="e-r-item-quotes">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ body }}'] }}</p>
<p class="e-r-item-footer">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_team_position }}'] }}
</p>
</div>
{% endfor %}
</section>
</div>
<div class="col-12 col-sm-6">
<section class="e-r-img-slider">
{% for row in rows %}
<div class="e-r-img">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_team_image }}'] }}
</div>
{% endfor %}
</section>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{#
/**
* @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">
<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">Videos</h6>
<p>Learn more about DIC India and its manufacturing operations by taking a dive into our latest videos.</p>
</div>
<div class="v_c_o_b">
<div class="v_i_c_b">
<div class="slider rbc_slider_b">
{% for row in rows %}
<div class="rbc_b_t">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_video_link }}'] }}
</div>
{% endfor %}
</div>
<div class="slider rbc_slider_s">
{% for row in rows %}
<div class="rbc_s_t">
<div class="v_b_c_b">
<div class="v_t_ob">
<div class="v_t_i_b">
{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ field_video_image }}'] }}
<div class="y_t_ic">
<img src="/themes/custom/envigo/images/youtube.png" />
</div>
</div>
<div class="v_t_c_b">
<div class="vcb_inner">
<p>{{ row.content['#view'].style_plugin.render_tokens[ loop.index0 ]['{{ title }}'] }}</p>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
\ 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 %}
{% for row in rows %}
{%
set row_classes = [
default_row_class ? 'views-row',
]
%}
{{- row.content -}}
{% endfor %}
{#
/**
* @file
* Default theme implementation for main view template.
*
* Available variables:
* - attributes: Remaining HTML attributes for the element.
* - css_name: A CSS-safe version of the view name.
* - css_class: The user-specified classes names, if any.
* - header: The optional header.
* - footer: The optional footer.
* - rows: The results of the view query, if any.
* - empty: The content to display if there are no rows.
* - pager: The optional pager next/prev links to display.
* - exposed: Exposed widget form/info to display.
* - feed_icons: Optional feed icons to display.
* - more: An optional link to the next page of results.
* - title: Title of the view, only used when displaying in the admin preview.
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the view title.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the view title.
* - attachment_before: An optional attachment view to be displayed before the
* view content.
* - attachment_after: An optional attachment view to be displayed after the
* view content.
* - dom_id: Unique id for every view being printed to give unique class for
* Javascript.
*
* @see template_preprocess_views_view()
*
* @ingroup themeable
*/
#}
{%
set classes = [
dom_id ? 'js-view-dom-id-' ~ dom_id,
]
%}
{{ title_prefix }}
{{ title }}
{{ title_suffix }}
{% if header %}
<header>
{{ header }}
</header>
{% endif %}
{% if exposed %}
<div {{ attributes.addClass(classes) }}>
{{ exposed }}
</div>
{% endif %}
{{ attachment_before }}
{% if rows -%}
{{ rows }}
{% elseif empty -%}
{{ empty }}
{% endif %}
{{ pager }}
{{ attachment_after }}
{{ more }}
{% if footer %}
<footer>
{{ footer }}
</footer>
{% endif %}
{{ feed_icons }}
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