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.
 Page does not exist at {{ SITENAME|striptags|e }} blog.
 {% endblock head_description %}
 {% endblock head_description %}
 {% block content %}
 {% block content %}
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <header class="page-header span10 offset2">
     <h1>That page doesn't exist!</h1>
     <h1>That page doesn't exist!</h1>
     </header>
     </header>
 </div>
 </div>
 
 
 
 
-<div class="row-fluid">
+<div class="row">
     <div class="span8 offset2">
     <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>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>
         <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 %}
 {% block content %}
 
 
-<div class="row-fluid">
+<div class="row">
     <header class="page-header span10 offset2">
     <header class="page-header span10 offset2">
     <h1><a href="{{ SITEURL }}/archives.html">All Posts</a></h1>
     <h1><a href="{{ SITEURL }}/archives.html">All Posts</a></h1>
     </header>
     </header>
 </div>
 </div>
-<div class="row-fluid">
+<div class="row">
     <div class="span10 offset2">
     <div class="span10 offset2">
         <div class="blog-archives">
         <div class="blog-archives">
             {% set last_year = 0 %}
             {% set last_year = 0 %}

+ 2 - 2
templates/article.html

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

+ 1 - 1
templates/base.html

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

+ 2 - 2
templates/categories.html

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

+ 3 - 3
templates/index.html

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

+ 3 - 3
templates/tags.html

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