old-website/templates/views/articles.html

11 lines
321 B
HTML
Raw Normal View History

2023-06-18 18:06:01 +00:00
{% 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>
2023-07-21 12:30:18 +00:00
<p>{{ article.date|timesince }} ago</p>
2023-06-18 18:06:01 +00:00
</a>
{% endfor %}
{% endblock %}