]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/planet/posting.html
planet: Add proper tag search function.
[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
12 <div class="row">
13 <div class="span9">
02f2d7fe 14 {% raw entry.text %}
60024cc8
MT
15 </div>
16
17 <p class="pull-right" style="clear: both;">
8876f3df
MT
18 {% if entry.tags %}
19 {{ _("Tags") }}:
20 {% for tag in entry.tags %}
21 <a href="/search?q={{ tag }}">{{ tag }}</a>
22 {% end %} &bull;
23 {% end %}
60024cc8
MT
24 {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
25 {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
26 </p>
27 </div>
d0d074e0 28{% end block %}