Guest User

Untitled

a guest
Feb 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <!-- =============================================== -->
  2. <!-- = Quick reference for adding a list of = -->
  3. <!-- = articles by month for a section in Mephisto = -->
  4. <!-- =============================================== -->
  5.  
  6. <h2>Archive By Month</h2>
  7.  
  8. {% if section.months.size > 0 %}
  9. <ul class="archive">
  10. {% for month in section.months %}
  11. {{ section | monthly_articles: month | size | assign_to: 'size' }}
  12. {{ section | monthly_articles: month | assign_to: 'month_articles' }}
  13. <li><a href="{{ section | monthly_url: month }}">{{ month | format_date: 'my' }} ({{ size }})</a>
  14. {% if size > 0 %}
  15. <ul>
  16. {% for article in month_articles %}
  17. <li><a href="{{article.link}}">{{ article.title }} ({{ article.comments_count | pluralize: 'Comment','Comments' }}) <small>Published: {{ article.published_at | format_date: 'mdy', true }}</small></a></li>
  18. {% endfor %}
  19. </ul>
  20. {% endif %}
  21. </li>
  22. {% endfor %}
  23. </ul>
  24. {% endif %}
Add Comment
Please, Sign In to add comment