Guest User

Untitled

a guest
Feb 20th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. Index: themes/default/templates/single.liquid
  2. ===================================================================
  3. --- themes/default/templates/single.liquid (revision 2245)
  4. +++ themes/default/templates/single.liquid (working copy)
  5. @@ -2,7 +2,9 @@
  6. <div class="inside">
  7. <div class="primary">
  8. <h1>{{ article.title }}</h1>
  9. - {{ article.excerpt }}
  10. + {% if article.excerpt %}
  11. + {{ article.excerpt }}
  12. + {% endif %}
  13. {{ article.body }}
  14. </div>
  15. <hr class="hide" />
  16. Index: themes/default/templates/section.liquid
  17. ===================================================================
  18. --- themes/default/templates/section.liquid (revision 2245)
  19. +++ themes/default/templates/section.liquid (working copy)
  20. @@ -4,7 +4,9 @@
  21. {% if forloop.index < 3 %}
  22. <div class="story{% if forloop.first %} first{% endif %}">
  23. <h3>{{ article | link_to_article }}</h3>
  24. - {{ article.excerpt }}
  25. + {% if article.excerpt %}
  26. + {{ article.excerpt }}
  27. + {% endif %}
  28. {{ article.body }}
  29. <div class="details">
  30. Posted on {{ article.published_at | format_date: 'stub', true }} |
  31. Index: themes/default/templates/home.liquid
  32. ===================================================================
  33. --- themes/default/templates/home.liquid (revision 2245)
  34. +++ themes/default/templates/home.liquid (working copy)
  35. @@ -4,7 +4,9 @@
  36. {% if forloop.index < 3 %}
  37. <div class="story{% if forloop.first %} first{% endif %}">
  38. <h3>{{ article | link_to_article }}</h3>
  39. - {{ article.excerpt }}
  40. + {% if article.excerpt %}
  41. + {{ article.excerpt }}
  42. + {% endif %}
  43. {{ article.body }}
  44. <div class="details">
  45. Posted on {{ article.published_at | format_date: 'stub', true }} |
Add Comment
Please, Sign In to add comment