Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1.  
  2. {{#foreach posts}}
  3. {{#if @first}}
  4. <article class="{{post_class}} col-xs-12 col-sm-6 col-lg-12">
  5. <div class="first-post" {{#if image}}style="background-image: url({{image}});"{{/if}}>
  6. {{#if image}}
  7. <div class="post-image">
  8. <a href="{{url}}" class="post-image-link"><img src="{{image}}" alt="{{title}}"></a>
  9. {{#if featured}}<span class="feat-strip">Featured</span>{{/if}}
  10. {{#if tags}}
  11. <ul class="post-tags">
  12. {{#foreach tags}}
  13. <li>
  14. <a href="{{url}}" title="{{name}}" class="tag-{{id}}">{{name}}</a>
  15. </li>
  16. {{/foreach}}
  17. </ul>
  18. {{/if}}
  19. </div>
  20. {{/if}}
  21. <div class="post-title-wrapper">
  22. {{#if featured}}<span class="feat-strip">Featured</span>{{/if}}
  23. <h2 class="post-title"><a href="{{url}}" title="{{title}}">{{title}}</a></h2>
  24. <div class="post-meta">{{#author}}<span>By</span> <a href="{{url}}" title="{{name}}">{{name}}</a>, {{/author}} <time datetime="{{date published_at format="YYYY-MM-DD"}}">{{date published_at format="MMM DD, YYYY"}}</time></div>
  25. </div>
  26. </div>
  27. <div class="post-excerpt">{{excerpt words="30"}}...</div>
  28. <a href="{{url}}" title="{{title}}" class="read-more">Read more</a>
  29. </article>
  30.  
  31. <div class="color-divider clearfix visible-lg-block"></div>
  32. {{else}}
  33. <article class="{{post_class}} col-sm-6 col-lg-4">
  34. {{#if image}}
  35. <div class="post-image">
  36. <a href="{{url}}" class="post-image-link"><img src="{{image}}" alt="{{title}}"></a>
  37. {{#if featured}}<span class="feat-strip">Featured</span>{{/if}}
  38. {{#if tags}}
  39. <ul class="post-tags">
  40. {{#foreach tags}}
  41. <li>
  42. <a href="{{url}}" title="{{name}}" class="tag-{{id}}">{{name}}</a>
  43. </li>
  44. {{/foreach}}
  45. </ul>
  46. {{/if}}
  47. </div>
  48. {{/if}}
  49. <h2 class="post-title"><a href="{{url}}" title="{{title}}">{{title}}</a></h2>
  50. <div class="post-meta">{{#author}}<span>By</span> <a href="{{url}}" title="{{name}}">{{name}}</a>, {{/author}} <time datetime="{{date published_at format="YYYY-MM-DD"}}">{{date published_at format="MMM DD, YYYY"}}</time></div>
  51. <div class="post-excerpt">{{excerpt words="30"}}...</div>
  52. <a href="{{url}}" title="{{title}}" class="read-more">Read more</a>
  53. </article>
  54. {{/if}}
  55. {{/foreach}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement