+
+{{ ds_content_wrapper }}>
diff --git a/themes/kalpesh/acadmix_subtheme/templates/laboratory/views-view-unformatted--laboratories--page_1.html.twig b/themes/kalpesh/acadmix_subtheme/templates/laboratory/views-view-unformatted--laboratories--page_1.html.twig
new file mode 100644
index 0000000..35f7ee0
--- /dev/null
+++ b/themes/kalpesh/acadmix_subtheme/templates/laboratory/views-view-unformatted--laboratories--page_1.html.twig
@@ -0,0 +1,56 @@
+{#
+/**
+ * @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 %}
+
{{ title }}
+{% endif %}
+
+
+{% for row in rows %}
+ {%
+ set row_classes = [
+ default_row_class ? 'views-row','col-sm-4', ]
+ %}
+
+
+ {{- row.content -}}
+
+
+
+
+{% endfor %}
+
+
+
+
+{#
+
+
+
+
+
+
+
+
+
+
+
+
+
+#}
\ No newline at end of file
diff --git a/themes/kalpesh/acadmix_subtheme/templates/photo gallary/views-view-unformatted--photo_gallery--page_1.html.twig b/themes/kalpesh/acadmix_subtheme/templates/photo gallary/views-view-unformatted--photo_gallery--page_1.html.twig
new file mode 100755
index 0000000..f84f1a4
--- /dev/null
+++ b/themes/kalpesh/acadmix_subtheme/templates/photo gallary/views-view-unformatted--photo_gallery--page_1.html.twig
@@ -0,0 +1,70 @@
+{#
+/**
+ * @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 %}
+
{{ title }}
+{% endif %}
+
+
+{% for row in rows %}
+ {%
+ set row_classes = [
+ default_row_class ? 'views-row','col-sm-4','con'
+ ]
+ %}
+
+
+
+{{ ds_content_wrapper }}>
+
diff --git a/themes/kalpesh/acadmix_subtheme/templates/recruters/views-view-unformatted--recruiters--page_1.html.twig b/themes/kalpesh/acadmix_subtheme/templates/recruters/views-view-unformatted--recruiters--page_1.html.twig
new file mode 100644
index 0000000..2a63680
--- /dev/null
+++ b/themes/kalpesh/acadmix_subtheme/templates/recruters/views-view-unformatted--recruiters--page_1.html.twig
@@ -0,0 +1,62 @@
+{#
+/**
+ * @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 %}
+
{{ title }}
+{% endif %}
+
+
+{% for row in rows %}
+ {%
+ set row_classes = [
+ default_row_class ? 'views-row','col-md-6' ]
+ %}
+
+
+ {{- row.content -}}
+
+
+
+
+{% endfor %}
+
+
+
+
+{#
+
+
+
+
+
+
+
+
+
+
+
+
+
+#}
+
+
+
+
+
+
diff --git a/themes/kalpesh/acadmix_subtheme/templates/responsive-image-formatter.html.twig b/themes/kalpesh/acadmix_subtheme/templates/responsive-image-formatter.html.twig
new file mode 100644
index 0000000..93caba8
--- /dev/null
+++ b/themes/kalpesh/acadmix_subtheme/templates/responsive-image-formatter.html.twig
@@ -0,0 +1,19 @@
+{#
+/**
+ * @file
+ * Default theme implementation to display a formatted responsive image field.
+ *
+ * Available variables:
+ * - responsive_image: A collection of responsive image data.
+ * - url: An optional URL the image can be linked to.
+ *
+ * @see template_preprocess_responsive_image_formatter()
+ *
+ * @ingroup themeable
+ */
+#}
+{% if url %}
+ {{ responsive_image }}
+{% else %}
+ {{ responsive_image }}
+{% endif %}
diff --git a/themes/kalpesh/acadmix_subtheme/templates/responsive-image.html.twig b/themes/kalpesh/acadmix_subtheme/templates/responsive-image.html.twig
new file mode 100644
index 0000000..99fca6b
--- /dev/null
+++ b/themes/kalpesh/acadmix_subtheme/templates/responsive-image.html.twig
@@ -0,0 +1,36 @@
+{#
+/**
+ * @file
+ * Default theme implementation of a responsive image.
+ *
+ * Available variables:
+ * - sources: The attributes of the tags for this tag.
+ * - img_element: The controlling image, with the fallback image in srcset.
+ * - output_image_tag: Whether or not to output an tag instead of a
+ * tag.
+ *
+ * @see template_preprocess()
+ * @see template_preprocess_responsive_image()
+ *
+ * @ingroup themeable
+ */
+#}
+{% if output_image_tag %}
+ {{ img_element }}
+{% else %}
+
+ {% if sources %}
+ {#
+ Internet Explorer 9 doesn't recognise source elements that are wrapped in
+ picture tags. See http://scottjehl.github.io/picturefill/#ie9
+ #}
+
+ {% for source_attributes in sources %}
+
+ {% endfor %}
+
+ {% endif %}
+ {# The controlling image, with the fallback image in srcset. #}
+ {{ img_element }}
+
+{% endif %}
diff --git a/themes/kalpesh/acadmix_subtheme/templates/views-view--photo_gallery--page_1.html.twig b/themes/kalpesh/acadmix_subtheme/templates/views-view--photo_gallery--page_1.html.twig
new file mode 100755
index 0000000..4caf52c
--- /dev/null
+++ b/themes/kalpesh/acadmix_subtheme/templates/views-view--photo_gallery--page_1.html.twig
@@ -0,0 +1,98 @@
+{#
+/**
+ * @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.
+ *
+ * @ingroup templates
+ *
+ * @see template_preprocess_views_view()
+ */
+#}
+{%
+ set classes = [
+ 'view',
+ 'view-' ~ id|clean_class,
+ 'view-id-' ~ id,
+ 'view-display-id-' ~ display_id,
+ dom_id ? 'js-view-dom-id-' ~ dom_id,
+ ]
+%}
+
+
+ {{ title_prefix }}
+ {% if title %}
+ {{ title }}
+ {% endif %}
+ {{ title_suffix }}
+ {% if header %}
+
+
+{{ ds_content_wrapper }}>
diff --git a/themes/kalpesh/research_group_subtheme/templates/research group/views-view-unformatted--research-area--page_1.html.twig b/themes/kalpesh/research_group_subtheme/templates/research group/views-view-unformatted--research-area--page_1.html.twig
new file mode 100644
index 0000000..8df2d80
--- /dev/null
+++ b/themes/kalpesh/research_group_subtheme/templates/research group/views-view-unformatted--research-area--page_1.html.twig
@@ -0,0 +1,57 @@
+{#
+/**
+ * @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 %}
+
{{ title }}
+{% endif %}
+
+
+ {% for row in rows %}
+ {%
+ set row_classes = [
+ default_row_class ? 'views-row','col-sm-4']
+ %}
+
+
+
+ {{ row.content }}
+
+
+ {% endfor %}
+
+
+
+
+{#
+
+
+
+
+
Metabolic engineering of cyanobacteria
+
Metabolic engineering of cyanobacteria
+Cyanobacteria, which constitute a quantitatively dominant phylum, are well known for their ability to carry out oxygenic photosynthesis. This prokaryotic group has been attracting attention in biofuel applications due to its favourable physiological characteristics, photosynthetic efficiency and amenability to genetic manipulations. Figure 5. Metabolic oscillations in cyanobacteria. Profiles of (A) ...