evorepo/templates/news/view.html
eliott 39a548fd26 Initial import for public release...
Special Note
  Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
2007-11-03 03:45:10 -04:00

14 lines
284 B
HTML

{% 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 %}