Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. {% if title %}
  2. <h3>{{ title }}</h3>
  3. {% endif %}
  4. {% for row in rows %}
  5. {%
  6. set row_classes = [
  7. default_row_class ? 'views-row',
  8. ]
  9. %}
  10. <div{{ row.attributes.addClass(row_classes) }}>
  11. {{ row.content }}
  12. </div>
  13. {% endfor %}
  14.  
  15. {% set size = rows | length %}
  16. {% if title %}
  17. <h3>{{ title }}</h3>
  18. {% endif %}
  19.  
  20. {% if size == 1 %}
  21. <div class="content1">
  22. {{rows[0] . content }}
  23. </div>
  24.  
  25. {% elseif size == 2 %}
  26. <div class="content1">
  27. {{rows[1] . content }}
  28. </div>
  29. {% endif %}
  30.  
  31. {{rows[0] . content (extract this values individualy) }}
  32.  
  33. {{rows[0] . content[color] }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement