]> git.ipfire.org Git - ipfire.org.git/blame - templates/planet-posting.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / planet-posting.html
CommitLineData
d0d074e0
MT
1{% extends "planet-user.html" %}
2
3{% block title %}{{ _("IPFire Planet") }} - {{ entry.title }}{% end block %}
4
60024cc8
MT
5{% block bodyA %}
6 <div class="page-header">
7 <h2>
8 <a href="/post/{{ entry.slug }}">{{ entry.title }}</a>
9 </h2>
10 </div>
11
12 <div class="row">
13 <div class="span9">
14 {{ entry.text }}
15 </div>
16
17 <p class="pull-right" style="clear: both;">
18 {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
19 {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
20 </p>
21 </div>
d0d074e0 22{% end block %}