Guest User

Untitled

a guest
Jan 24th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. {# Check if this is the front/homepage #}
  2. {% if fn('is_front_page') %}
  3. {# store our hero data #}
  4. {% set image = hero_random_img.url %}
  5. {% set title = hero_random_copy %}
  6. {% set link = hero_random_link.url %}
  7. {% set link_title = hero_random_link.title %}
  8. {% set link_target = hero_random_link.target %}
  9. {% set alignment = hero_random_alignment %}
  10.  
  11. {% set class = 'hero-bg-image--homepage' %}
  12. {% else %}
  13. {# All other pages get the normal treatment #}
  14. {% set image = post.thumbnail.src %}
  15. {% set title = post.title %}
  16. {% endif %}
  17.  
  18. {# Feed data into template in Pattern Lab #}
  19. {% include '@components/hero-bg-image/hero-bg-image.twig' with {
  20. 'custom_classes': class,
  21. 'image': image,
  22. 'image_alt': '',
  23. 'has_overlay': true,
  24. 'title': title,
  25. 'subtitle': '',
  26. 'summary': '',
  27. 'call_to_action_content': ''
  28. } %}
Add Comment
Please, Sign In to add comment