{% extends "blog_base.html" %} {% load static %} {% block content %} {{ author.name }}'s Blogs
{% include "cards/authorcard.html" %}

Articles from {{ author.name }}

{% if latest_blogs %}
{% for blog in latest_blogs %} {% include "cards/blogcard_two.html" %} {% endfor %}
{% if latest_blogs.has_other_pages %}
{% endif %} {% else %}

No blogs available

There are currently no blogs published by {{ author.name }}.

Return to Home
{% endif %}
{% endblock %}