]> git.ipfire.org Git - ipfire.org.git/blob - templates/planet/posting.html
5fa44845c135ccfc79e03be33ae45ec2fb9f02eb
[ipfire.org.git] / templates / planet / posting.html
1 {% extends "user.html" %}
2
3 {% block title %}{{ _("IPFire Planet") }} - {{ entry.title }}{% end block %}
4
5 {% block bodyA %}
6 <div class="page-header">
7 <h1>
8 <a href="/post/{{ entry.slug }}">{{ entry.title }}</a>
9 </h1>
10 </div>
11
12 {% if entry.is_draft() %}
13 <div class="alert alert-warning alert-dismissable">
14 <button type="button" class="close" data-dismiss="alert">&times;</button>
15 <strong>{{ _("Heads up!") }}</strong> {{ _("This post is a draft and has not been published, yet.") }}
16 </div>
17 {% end %}
18
19 {% raw entry.text %}
20
21 <p class="clear pull-right">
22 {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.name }}</a>
23 {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
24 </p>
25 {% end block %}