]> git.ipfire.org Git - ipfire.org.git/blobdiff - templates/planet/posting.html
Fix layout of planet pages.
[ipfire.org.git] / templates / planet / posting.html
index 4524a2abe2164ba8d580b418d1c555ca122d601f..9c622b0d48691440a539d3577afcd3f53432a98f 100644 (file)
@@ -9,27 +9,23 @@
                </h1>
        </div>
 
-       <div class="row">
-               <div class="col-lg-9 col-md-9">
-                       {% if entry.is_draft() %}
-                               <div class="alert alert-warning alert-dismissable">
-                                       <button type="button" class="close" data-dismiss="alert">&times;</button>
-                                       <strong>{{ _("Heads up!") }}</strong> {{ _("This post is a draft and has not been published, yet.") }}
-                               </div>
-                       {% end %}
-
-                       {% raw entry.text %}
+       {% if entry.is_draft() %}
+               <div class="alert alert-warning alert-dismissable">
+                       <button type="button" class="close" data-dismiss="alert">&times;</button>
+                       <strong>{{ _("Heads up!") }}</strong> {{ _("This post is a draft and has not been published, yet.") }}
                </div>
+       {% end %}
 
-               <p class="pull-right" style="clear: both;">
-                       {% if entry.tags %}
-                               {{ _("Tags") }}:
-                               {% for tag in entry.tags %}
-                                       <a href="/search?q={{ tag }}">{{ tag }}</a>
-                               {% end %} &bull;
-                       {% end %}
-                       {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
-                       {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
-               </p>
-       </div>
+       {% raw entry.text %}
+
+       <p class="clear pull-right">
+               {% if entry.tags %}
+                       {{ _("Tags") }}:
+                       {% for tag in entry.tags %}
+                               <a href="/search?q={{ tag }}">{{ tag }}</a>
+                       {% end %} &bull;
+               {% end %}
+               {{ _("Posted by") }} <a href="/user/{{ entry.author.uid }}">{{ entry.author.cn }}</a>
+               {{ _("on") }} {{ locale.format_date(entry.published, shorter=True) }}
+       </p>
 {% end block %}