{% extends 'base.html' %}
{% block title %}No Hype AI{% endblock %}
{% block content %}
{% if featured_article %}
{{ featured_article.title }}
{{ featured_article.author.name }}
{{ featured_article.read_time_mins }} min read
{% endif %}
{% for article in latest_articles %}
{% include 'components/article_card.html' with article=article %}
{% endfor %}
{% for article in more_articles %}
{% include 'components/article_card.html' with article=article %}
{% endfor %}
{% endblock %}