summaryrefslogtreecommitdiff
path: root/sublab_project/news/templates/news/news_list.html
blob: 52ded723ad9ae56081a468a4fc47ed3a148809e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% 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>
	        {% if post.image %}<img src="{{ MEDIA_URL }}{{ post.image }}" width="{{ post.image_width }}" height="{{ post.image_height }}" align="right" />{% endif %}
			{{ post.content_html|safe }}
		</p>
	{% endfor %}
	{% if is_paginated %}
	<p>
	{% for page in paginator.page_range %}
		<a href="?page={{ page }}">{{ page }}</a>
	{% endfor %}
	</p>
	{% endif %}

{% endblock content %}