]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/planet/posting.html
planet: Remove tags.
[people/shoehn/ipfire.org.git] / templates / planet / posting.html
CommitLineData
55b162d6 1{% extends "user.html" %}
d0d074e0
MT
2
3{% block title %}{{ _("IPFire Planet") }} - {{ entry.title }}{% end block %}
4
60024cc8
MT
5{% block bodyA %}
6 <div class="page-header">
55b162d6 7 <h1>
60024cc8 8 <a href="/post/{{ entry.slug }}">{{ entry.title }}</a>
55b162d6 9 </h1>
60024cc8
MT
10 </div>
11
b3202856
MT
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.") }}
60024cc8 16 </div>
b3202856 17 {% end %}
60024cc8 18
b3202856
MT
19 {% raw entry.text %}
20
21 <p class="clear pull-right">
b3202856
MT
22 {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
23 {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
24 </p>
d0d074e0 25{% end block %}