blog_index_page.html 441 B

12345678910111213141516
  1. {% extends "base.html" %}
  2. {% load wagtailimages_tags %}
  3. {% block content %}
  4. {{ page.title }}
  5. {% for blog in blogs %}
  6. <div>
  7. <h2><a href="{{ blog.full_url }}">{{ blog.title }}</a></h2>
  8. {{ blog.body|truncatewords_html:10 }}
  9. {% for tag in blog.get_tags %}
  10. <a href="{{ tag.url }}">{{ tag }}</a>
  11. {% endfor %}
  12. </div>
  13. {% endfor %}
  14. {% endblock content %}