summaryrefslogtreecommitdiff
path: root/themes/kalpesh/research_group_subtheme/templates/research group/views-view-unformatted--research-area--page_1.html.twig
blob: 8df2d801d99c638071c659163c858f8e366b7ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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 %}
  <h3>{{ title }}</h3>
{% endif %}

<div class="row text-center">
  {% for row in rows %}
    {%
      set row_classes = [
        default_row_class ? 'views-row','col-sm-4']
    %}
    
    <div{{ row.attributes.addClass(row_classes) }}>
       <div class="thumbnail">
        {{ row.content }}
       </div>
     </div>
  {% endfor %}
</div>



{#     <div class="row text-center">
     
      <div class="col-sm-3">
        <div class="thumbnail" style="">
          <img src="tech.jpeg" alt="Paris" width="400" height="300">
          <p><strong>Metabolic engineering of cyanobacteria</strong></p>
          <p>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) ...</p>
          <button class="btn" >read more</button>
        </div>
      </div>
    
    </div>
 #}