{% if articles %}

Recommended Articles

{% for item in articles %}

{{ item.article.title }}

{% if item.article.author_profile_image %} {{ item.article.author }} {% endif %} {{ item.article.author }}
Published on {{ item.article.publication_date|date:"F j, Y" }}

{{ item.article.description|default:"No description available." }}

{% if item.article.tags.exists %}
{% for tag in item.article.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
Relevance Score: {{ item.relevance_score }}
Reason: {{ item.reasoning }}
Read Article
{% endfor %}
{% else %}

No recommended articles found.

{% endif %}