Commit 48bfe8f1 by Ajay Barthwal

Merge branch 'feature-theme' into 'develop'

Feature theme

See merge request manzarH/dic-global-dev!16
parents 6bb312b9 1aaddab0
...@@ -3,6 +3,7 @@ global-style: ...@@ -3,6 +3,7 @@ global-style:
css: css:
theme: theme:
vendor/bootstrap.min.css: {} vendor/bootstrap.min.css: {}
vendor/slick.css: {}
vendor/lightbox.css: {} vendor/lightbox.css: {}
vendor/jquery.jscrollpane.css: {} vendor/jquery.jscrollpane.css: {}
css/header.css: {} css/header.css: {}
...@@ -15,6 +16,7 @@ global-style: ...@@ -15,6 +16,7 @@ global-style:
css/product-main.css: {} css/product-main.css: {}
js: js:
js/slick.min.js: {}
js/custom.js: {} js/custom.js: {}
js/mwheelIntent.js: {} js/mwheelIntent.js: {}
js/masonry.pkgd.min.js: {} js/masonry.pkgd.min.js: {}
......
{#
/**
* @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="custom">
{{ field.title.content }}
</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