blob: 2f7c3d872d03da25992e10bc0334eceb6e3e31e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% block title %}Arch Linux - {{ news.title }}{% endblock %}
{% 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|safe|linebreaks }}
</div>
{% endblock %}
|