summaryrefslogtreecommitdiffstats
path: root/templates/news/view.html
blob: 5d100450c43ab33906fcab1157d8448610b3ed49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block content %}
	<div class="box">
		<div style="float: right; font-size: small">
			{{ news.author.get_full_name }}<br />
			{{ news.postdate }}
		</div>
		<h3>{{ news.title }}</h3>
		<hr /><br />
		{{ news.content|linebreaks }}
	</div>
{% endblock %}