bornhack-website/news/templates/news_index.html

15 lines
324 B
HTML
Raw Normal View History

2016-05-30 19:36:14 +00:00
{% extends 'base.html' %}
{% block content %}
{% for item in news_items %}
<div>
<h3>{{ item.title }} <small>{{ item.published_at|date:"Y-m-d" }}</small></h3>
</div>
{{ item.content }}
{% if not forloop.last %}
<hr />
{% endif %}
{% empty %}
<h3>No news yet. Stay tuned!</h3>
{% endfor %}
{% endblock %}