Files
main-site/templates/blog/article_index_page.html

12 lines
312 B
HTML

{% extends 'base.html' %}
{% load core_tags %}
{% block title %}Articles | No Hype AI{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{% for article in articles %}
{% include 'components/article_card.html' with article=article %}
{% empty %}
<p>No articles found.</p>
{% endfor %}
{% endblock %}