Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. {% if settings.show_services %}
  2. <div class="container">
  3. <div class="row text-center"><br>
  4. {% for z in (1..3) %}
  5. {% assign show_services_image = 'show_services_image' | append: z %}
  6. {% capture services %}{{ 'services_' | append: z | append: '.png' }}{% endcapture %}
  7. {% assign title_image = 'title_' | append: z | append: '_image' %}
  8. {% assign desc_image = 'desc_' | append: z | append: '_image' %}
  9. {% if settings[show_image] %}
  10. <div class="col-md-4 col-sm-4" style="width: 28%;float: left;padding: 0 30px;">
  11. <img src="{{ services | asset_url }}" alt="{{ settings[desc_image] }}" class="img-thumbnail" style="width:150px;">
  12.  
  13. <h3>{{ settings[title_image] }}</h3>
  14. {% if settings[desc_image] != '' %}
  15. <p>{{ settings[desc_image] }}</p>
  16. {% endif %}
  17. </div>
  18. {% endif %}
  19. {% endfor %}
  20. </div>
  21. </div>
  22. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement