{% load static %} {% load djpress_tags %} {% get_blog_title %}

{% get_blog_title %}

{% comment %}If we get a single post, then show the full content.{% endcomment %} {% if post %}

{% post_title %}

By {% post_author %}

{% post_date %}

{% post_content %}

Categories:

{% post_categories %}
{% comment %}If we get multiple posts, then show the truncated content.{% endcomment %} {% elif posts %} {% comment %}If we get posts for a category, then we can show the category header.{% endcomment %} {% if category %}

{% category_name %}

{% endif %} {% for post in posts %}

{% post_title %}

By {% post_author %}

{% post_date %}

{{ post.truncated_content_markdown|safe }} {% if post.is_truncated %}

Read more

{% endif %}

Categories:

    {% for category in post.categories.all %}
  • {% post_category_link category "badge bg-primary" %}
  • {% endfor %}
{% endfor %} {% else %}

No posts available.

{% endif %}