<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="page-header">
<h1 id="timeline">Timeline</h1>
</div>
<ul class="timeline">
<li class="timeline-inverted">
<div class="timeline-badge btn-danger">
<span class="timeline-day">11</span>
<span class="timeline-month">APR</span>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Basic Structure</h4>
</div>
<div class="timeline-body">
<p>The basic structure of the timeline is a list <code><ul class="timeline"></code> with each element on the timeline wrapped
in a list item <code>li></code></p>
<hr><code>
<ul class="timeline"≫<br>
<li class="timeline-inverted"≫<br>
<-- Timeline badge / icon goes here... see later --><br>
<div class="timeline-panel"≫<br>
<div class="timeline-heading"≫<br>
<h4 class="timeline-title"≫<br>
The panel title.<br>
</h4≫<br>
</div≫<br>
<div class="timeline-body"≫<br>
The main text in the timeline panel<br>
</div≫<br>
</div≫<br>
</li≫<br>
</ul≫
</code><hr>
<p><strong>Note:</strong> the <code>class="timeline-inverted"</code> on the <code><li></code> to display the entry on the right, otherwise it defaults
to the left.
</div>
</div>
</li>
<li>
<div class="timeline-badge btn-success">
<span class="timeline-day">13</span>
<span class="timeline-month">APR</span>
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Date Badges</h4>
<p><small class="text-muted"><i class="glyphicon glyphicon-time"></i> 11:45</small></p>
</div>
<div class="timeline-body">
<p>To display the date on the timeline, simply wrap the day and month in <code><span></code> elements with <code>timeline-day</code>
and <code>timeline-month</code> classes:</p>
<hr><p>
<code>
<div class="timeline-badge btn-success"><br>
<span class="timeline-day">13</span><br>
<span class="timeline-month">APR</span><br>
</div>
</code>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-icon btn-info"><i class="glyphicon glyphicon-question-sign"></i></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 class="timeline-title">Icon badges</h4>
</div>
<div class="timeline-body">
<p>To display an icon on the timeline rather than the date, use standard bootstrap glyphicons (or font-awesome icons) and wrap
them in a <code><span></code> with a class of <code>timeline-icon</code>:</p>
<hr><p>
<code>
<div class="timeline-icon btn-info"><br>
<i class="glyphicon glyphicon-question-sign"></i><br>
</div>
</code>
</p>
</div>
</div>
</li>
</ul>
</div>