Browse Source

Change .row-fluid to .row

Talha Mansoor 10 years ago
parent
commit
0e15b536c3

+ 2 - 2
templates/404.html

@@ -8,14 +8,14 @@ Page not found · {{ super() }}
 Page does not exist at {{ SITENAME|striptags|e }} blog.
 {% endblock head_description %}
 {% block content %}
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <h1>That page doesn't exist!</h1>
     </header>
 </div>
 
 
-<div class="row-fluid">
+<div class="row">
     <div class="span8 offset2">
         <p>Sorry, but the page you are looking for cannot be found. It seems that the page you were trying to reach doesn't exist, or may be it has just moved, or it no longer exists.</p>
         <p>The best thing to do is to use the search form or start again from the <a href="{{ SITEURL }}">home page</a>.</p>

+ 2 - 2
templates/archives.html

@@ -26,12 +26,12 @@ Full archives of {{ SITENAME|striptags|e }} blog.
 
 {% block content %}
 
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <h1><a href="{{ SITEURL }}/archives.html">All Posts</a></h1>
     </header>
 </div>
-<div class="row-fluid">
+<div class="row">
     <div class="span10 offset2">
         <div class="blog-archives">
             {% set last_year = 0 %}

+ 2 - 2
templates/article.html

@@ -22,13 +22,13 @@
 
 {% block content %}
 <article>
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <h1><a href="{{ SITEURL }}/{{ article.url }}"> {{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a></h1>
     </header>
 </div>
 
-<div class="row-fluid">
+<div class="row">
     {% if article.toc %}
     <div class="span2 table-of-content">
         <nav>

+ 1 - 1
templates/base.html

@@ -79,7 +79,7 @@
             </div>
         </div>
         <div class="container-fluid">
-            <div class="row-fluid">
+            <div class="row">
                 <div class="span1"></div>
                 <div class="span10">
                     {% block content %}

+ 2 - 2
templates/categories.html

@@ -30,14 +30,14 @@ All categories of the {{ SITENAME|striptags|e }} blog.
 {% endblock feed_links %}
 
 {% block content %}
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <h1><a href="{{ SITEURL }}/categories.html">All Categories</a></h1>
     </header>
 </div>
 
 
-<div class="row-fluid">
+<div class="row">
     <div class="span8 offset2">
         <div class="accordion" id="accordion2">
             {% for category, articles in categories %}

+ 3 - 3
templates/index.html

@@ -32,7 +32,7 @@
 {% block content %}
 {% from '_includes/_defaults.html' import LANDING_PAGE_ABOUT with context %}
 {% from '_includes/_defaults.html' import PROJECTS with context %}
-<div class="row-fluid">
+<div class="row">
     {% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.title %}
     {% set css_class = 'span10 offset2' %}
     {% if PROJECTS and LANDING_PAGE_ABOUT %}
@@ -43,7 +43,7 @@
     </header>
     {% endif %}
 
-    <div class="row-fluid">
+    <div class="row">
         {% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.details %}
         {% set css_class = 'span8 offset2' %}
         {% if PROJECTS and LANDING_PAGE_ABOUT %}
@@ -84,7 +84,7 @@
     {% if articles and PROJECTS and LANDING_PAGE_ABOUT %}
     {% set css_class = 'span12' %}
     {% endif %}
-    <div class="row-fluid">
+    <div class="row">
         <div class="{{css_class}}">
             <header>
             <h1 id="recent-posts">Recent Posts <a id="allposts" href="{{ SITEURL }}/archives.html">all posts</a></h1>

+ 2 - 2
templates/page.html

@@ -22,13 +22,13 @@
 
 {% block content %}
 <article>
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <h1><a href="{{ SITEURL }}/{{ page.url }}"> {{ page.title }} {%if page.subtitle %} <small> {{ page.subtitle }} </small> {% endif %} </a></h1>
     </header>
 </div>
 
-<div class="row-fluid">
+<div class="row">
     {% if page.toc %}
     <div class="span2 table-of-content">
         <nav>

+ 3 - 3
templates/tags.html

@@ -31,12 +31,12 @@ All tags used in the {{ SITENAME|striptags|e }} blog.
 
 {% block content %}
 
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <h1><a href="{{ SITEURL }}/tags.html">All Tags</a></h1>
     </header>
 </div>
-<div class="row-fluid">
+<div class="row">
     <div class="span8 offset2">
         <form class="form-search">
             <input type="text" class="input-medium search-query filterinput" placeholder="Find a tag">
@@ -52,7 +52,7 @@ All tags used in the {{ SITENAME|striptags|e }} blog.
     </div>
 </div>
 
-<div class="row-fluid">
+<div class="row">
     <div class="span8 offset2">
         {% for tag, articles in tags|sort %}
         <h2 id="{{ tag.slug }}-ref" class="tag-title">{{ tag }}</h2>