This commit is contained in:
Michał Gdula 2023-06-19 19:08:23 +00:00
parent 43665fb930
commit 384aa2b152
173 changed files with 10 additions and 30637 deletions

View file

@ -0,0 +1,10 @@
{% 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 %}