mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-30 20:42:37 +02:00
10 lines
301 B
HTML
10 lines
301 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
{% for article in articles %}
|
|
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
|
|
<p>{{ article.description }}</p>
|
|
<p class="date">Published on {{ article.locale_date }}</p>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|