{% extends 'portfolio/base.html' %} {% block title %}Blog - ChrisDev{% endblock %} {% block content %}

Blog

Insights, tutorials, and stories

All Posts {% for category in categories %} {{ category.name }} {% endfor %}
{% if featured_posts and not active_category and not search_query %}

Featured Posts

{% for post in featured_posts %}
{{ post.title }}
{{ post.category.name }}

{{ post.title }}

{% endfor %}
{% endif %}
{% if search_query %}

Showing results for "{{ search_query }}"

{% endif %} {% if page_obj %}
{% for post in page_obj %}
{{ post.title }}
{{ post.category.name }} {{ post.read_time }} min read

{{ post.title }}

{{ post.excerpt }}

{{ post.published_date|date:"M d, Y" }} {{ post.views }} views
{% endfor %}
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} {% endif %} {% for num in page_obj.paginator.page_range %} {{ num }} {% endfor %} {% if page_obj.has_next %} {% endif %}
{% endif %} {% else %}

No Posts Found

Check back soon for new content!

{% endif %}
{% endblock %}