Browse Source

Moves article content to the center

Talha Mansoor 11 years ago
parent
commit
e33cfe76f7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      templates/article.html

+ 3 - 3
templates/article.html

@@ -15,13 +15,13 @@
 </script>
 <article>
 <div class="row-fluid">
-    <header class="page_header span12">
+    <header class="page_header span10 offset2">
     <h1><a href="/{{ article.url }}"> {{ article.title }} {%if article.subtext %} <small> {{ article.subtext }} </small> {% endif %} </a></h1>
     </header>
 </div>
 
 <div class="row-fluid">
-    <div class="span8 offset1 article-content">
+    <div class="span8 offset2 article-content">
         {{ article.content }}
         <aside>
         {% for an_artcile in dates %}
@@ -48,7 +48,7 @@
         </aside>
     </div>
     <section>
-    <div class="span2 offset1">
+    <div class="span2" style="float:right">
         {% if article.date %} 
         <h4>Published</h4>
         {% set day = article.date.strftime('%d')|int %}