Commit 8e0e3bd2 by Manzar Hussain

investor detail page

parent 9a5dea26
{#
/**
* @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 }}
...@@ -18,9 +18,7 @@ ...@@ -18,9 +18,7 @@
*/ */
#} #}
{% if title %}
<h3>{{ title }}</h3>
{% endif %}
{% {%
set row_classes = [ set row_classes = [
default_row_class ? 'views-row ls_sbmenu sb_dd_m_data', default_row_class ? 'views-row ls_sbmenu sb_dd_m_data',
...@@ -30,9 +28,12 @@ ...@@ -30,9 +28,12 @@
<div class="ls_r_con_b"> <div class="ls_r_con_b">
<div class="rcb_pd_page"> <div class="rcb_pd_page">
<h1 class="ineves_det_h_m">Annual Results</h1>
<div class="a_r_c_b"> <div class="a_r_c_b">
<h4 class="hm_cb_d">2020</h4> {% if title %}
<h4 class="hm_cb_d">{{ title }}</h4>
{% endif %}
<div class="arcb_data"> <div class="arcb_data">
<div class="col-sm-6"> <div class="col-sm-6">
{% for row in rows %} {% for row in rows %}
......
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