blog.notmyidea.org/theme/templates/index.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 %}