[[Steps To Convert MT To Bootstrap Part 4|Previous]] | [[Steps to convert MT to Bootstrap Part 6|Next]]\\ 

On the ''Archive Index'', do as the ''Main Index'' but remember to put
<code>
<$mt:GetVar name="website_name"$> | 
</code>
in first place in the ''title'' for the head section of the page\\

Call the ''PHP Functions'' i.e. ''<$mt:Include module="PHP Functions"$>''\\
Put in the ''Fixed Navbar'' block\\

Replace the ''Banner Header'' block with
<code>
 <!-- Begin page content -->
 <div class="container">
  <$mt:Include module="Banner Header"$>
</code>

Start the two column section
<code>
  <div class="row">
   <div class="col-md-8">
    <div id="content">
</code>

Make sure to close ''content'' and ''col-md-8'' properly then add the sidebar
<code>
   <div class="col-md-4">
<$mt:Include module="Sidebar"$>
   </div>
</code>

And two more closing ''div''s for the ''row'' and ''container''\\

Leave the ''Banner Footer'' module call, remove the two closing ''divs'' below then put in the Javascript calls
<code>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<$mt:Include module="Bootstrap Javascript"$>
</code>

Now we move on to editing the ''Archive'' templates\\
