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

{%block content %}
	<h2>sublab - news</h2>
	{% for post in news_list %}
		<h3 id="{{ post.slug }}">
			<a href="{{ post.get_absolute_url }}">{{ post.date_updated|date }} - {{ post.title }}</a>
		</h3>
		<p>{{ post.content_html|safe }}</p>
	{% endfor %}
{% endblock content %}