Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. {% for post in craft.entries.section('posts') %}
  2. {% if loop.first and craft.request.pageNum == 1 %}
  3. <div class="box col-sm-4 col-md-6">
  4. <div class="thumb featured dark-overlay">
  5. <div class="photo">
  6. <a href="{{post.url}}">
  7. <img src="{{post.postImage.first().getUrl('featuredImage')}}" alt="" width="715" height="715">
  8.  
  9. <span class="info"><strong class="big-title">{{post.title}}</strong><span class="excerpt">{{post.tagline}}</span>
  10. <em class="arrow-right"></em></span>
  11. </a>
  12. </div>
  13. </div>
  14. </div>
  15. {% else %}
  16. <div class="box col-xs-6 col-sm-4 col-md-3">
  17. <div class="thumb">
  18. <div class="photo">
  19. <a href="{{post.url}}">
  20. <img src="{{post.postImage.first().getUrl('thumbImage')}}" alt="" width="434" height="434">
  21. <span class="info"><strong class="title">{{post.title}}</strong>
  22. <!--<span class="excerpt">{{post.tagline}}</span>-->
  23. <em class="arrow-right"></em></span>
  24. </a>
  25. </div>
  26. </div>
  27. </div>
  28. {% endif %}
  29. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement