Commit b08fe999 by Manzar Hussain

add new template

parent dddca284
body,input,textarea,select{color:#000;background:none;}body.two-sidebars,body.sidebar-first,body.sidebar-second,body{width:640px;}#sidebar-first,#sidebar-second,.navigation,#toolbar,.site-footer,.tabs,.shortcut-action{display:none;}.one-sidebar .main-content,.two-sidebars .main-content{width:100%;}.featured-bottom{width:960px;margin:0;padding:0;border:none;}.featured-bottom-first,.featured-bottom-second,.featured-bottom-third{width:250px;}#comments .title,#comments form,.comment-forbidden{display:none;}
This source diff could not be displayed because it is too large. You can view the blob instead.
{#
/**
* @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 classes = [
dom_id ? 'js-view-dom-id-' ~ dom_id,
]
%}
<div class="ls_r_con_b">
<div class="rcb_pd_page">
{% if header %}
{{ header }}
{% endif %}
{% if exposed %}
<div {{ attributes.addClass(classes) }}>
{{ exposed }}
</div>
{% endif %}
{% if rows %}
{{ rows }}
{% endif %}
</div>
</div>
\ No newline at end of file
...@@ -30,21 +30,10 @@ ...@@ -30,21 +30,10 @@
%} %}
<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">
{{ dump(form) }}
{% if exposed %}
<div {{ attributes.addClass(classes) }}>
{{ exposed }}
</div>
{% endif %}
</div>
</div>
<div class="a_r_c_b"> <div class="a_r_c_b">
<div class="row id_spacer_con id_filter_common id_filter_2020"> <div class="row id_spacer_con id_filter_common id_filter_2020">
...@@ -64,9 +53,6 @@ ...@@ -64,9 +53,6 @@
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
</div>
</div>
</div> </div>
......
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