summaryrefslogtreecommitdiff
path: root/sublab_project/news/templates/news/news_list.html
blob: ab998e88554d55ca73c97662681b062d68dd6998 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends 'base.html' %}

{%block content %}
	{% for post in news_list %}
		<h3 id="{{ post.slug }}">
			<a>{{ post.date_updated|date }} - {{ post.title }}</a>
		</h3>
		<p>{{ post.content }}</p>
	{% endfor %}
{% endblock content %}