{% extends "blogorama/base.html" %} {% load static %} {% load i18n %} {% load markdownify %} {% block title %} - Blog Posts {% endblock title %} {% block content %}

Blogorama Blog Posts.

{% for object in object_list %}
...

{{ object.title }}

{{ object.content|markdownify|truncatechars_html:200 }}

Continue Reading
{% empty %} No Posts yet. {% endfor %}
{% comment %} {% endcomment %} {% if toc %}

Table of Contents

{% endif %}
    {% for year, y_value in toc.items %}
  • {{ year }}
      {% for month, m_value in y_value.months.items %}
    • {{ month }}
        {% for post in m_value.posts %}
      • {{ post.title }} by {{ post.author }}
      • {% endfor %}
    • {% endfor %}
  • {% endfor %}
{% comment %} {% endcomment %} {% if perms.blogorama.update_post %}

My Drafts

{% endif %}
{% comment %} {% endcomment %} {% if is_paginated %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% endif %}
{% endblock content %}