Scaffold containerized Django/Wagtail app with core features
This commit is contained in:
11
templates/blog/article_index_page.html
Normal file
11
templates/blog/article_index_page.html
Normal file
@@ -0,0 +1,11 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user