article_list.html 892 B

1234567891011121314151617181920212223
  1. {% extends "base.html" %}
  2. {% block content %}
  3. {% if articles %}
  4. {% for article in (articles_page.object_list if articles_page else articles) %}
  5. <article>
  6. <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
  7. {% if DISPLAY_ARTICLE_INFO_ON_INDEX %}
  8. <div class="well well-sm">
  9. {% include "includes/article_info.html" %}
  10. </div>
  11. {% endif %}
  12. <div class="summary">{{ article.summary }}
  13. {% include 'includes/comment_count.html' %}
  14. <a class="btn btn-default btn-xs" href="{{ SITEURL }}/{{ article.url }}">more ...</a>
  15. </div>
  16. </article>
  17. <hr/>
  18. {% endfor %}
  19. {% endif %}
  20. {% include 'includes/pagination.html' %}
  21. {% endblock content %}