mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-01-01 12:16:00 +00:00
11 lines
322 B
HTML
11 lines
322 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<h1>Articles</h1>
|
|
{% for article in articles %}
|
|
<a href="{% url 'articles:detail' slug=article.slug %}" class="article">
|
|
<h2>{{ article.title }}</h2>
|
|
<p>{{ article.date|date:"jS M, Y" }}</p>
|
|
</a>
|
|
{% endfor %}
|
|
{% endblock %}
|