HTML code
Clean, semantic HTML that powers this Bootstrap 3.3.6 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.
Download<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="row">
<div class="col-sm-8">
<div class="title"><span>Latest Blog</span></div>
<div class="row">
<div class="col-md-6">
<div class="thumbnail blog-list">
<a href="#"><img src="http://www.grehon.com/mimity/v2.0/images/demo/blog1.jpg" alt=""></a>
<div class="caption">
<h5>Lorem ipsum dolor sit amet consectetur</h5>
<small>
<span><i class="fa fa-clock-o"></i> Mar 27, 14</span>
<span><i class="fa fa-user"></i> <a href="">Admin</a></span>
<span><i class="fa fa-tag"></i> <a href="">Tags</a></span>
</small>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<a href="#" class="btn "><i class="fa fa-long-arrow-right"></i> Read More</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="thumbnail blog-list">
<a href="#"><img src="http://www.grehon.com/mimity/v2.0/images/demo/blog2.jpg" alt=""></a>
<div class="caption">
<h5>Lorem ipsum dolor sit amet consectetur</h5>
<small>
<span><i class="fa fa-clock-o"></i> Mar 27, 14</span>
<span><i class="fa fa-user"></i> <a href="">Admin</a></span>
<span><i class="fa fa-tag"></i> <a href="">Tags</a></span>
</small>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<a href="#" class="btn "><i class="fa fa-long-arrow-right"></i> Read More</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="thumbnail blog-list">
<a href="#"><img src="http://www.grehon.com/mimity/v2.0/images/demo/blog3.jpg" alt=""></a>
<div class="caption">
<h5>Lorem ipsum dolor sit amet consectetur</h5>
<small>
<span><i class="fa fa-clock-o"></i> Mar 27, 14</span>
<span><i class="fa fa-user"></i> <a href="">Admin</a></span>
<span><i class="fa fa-tag"></i> <a href="">Tags</a></span>
</small>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<a href="#" class="btn "><i class="fa fa-long-arrow-right"></i> Read More</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="thumbnail blog-list">
<a href="blog-detail.html"><img src="http://www.grehon.com/mimity/v2.0/images/demo/blog4.jpg" alt=""></a>
<div class="caption">
<h5>Lorem ipsum dolor sit amet consectetur</h5>
<small>
<span><i class="fa fa-clock-o"></i> Mar 27, 14</span>
<span><i class="fa fa-user"></i> <a href="">Admin</a></span>
<span><i class="fa fa-tag"></i> <a href="">Tags</a></span>
</small>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
<a href="#" class="btn "><i class="fa fa-long-arrow-right"></i> Read More</a>
</div>
</div>
</div>
<div class="col-xs-12 text-center">
<ul class="pagination">
<li class="disabled"><a href="#">«</a></li>
<li class="disabled"><a href="#">‹</a></li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">›</a></li>
<li><a href="#">»</a></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="title"><span>Categories</span></div>
<ul class="list-group blog-nav">
<li class="list-group-item">» <a href="blog.html">News</a></li>
<li class="list-group-item">» <a href="blog.html">Events</a></li>
<li class="list-group-item">» <a href="blog.html">Promotions</a></li>
</ul>
<div class="title"><span>Archives</span></div>
<ul class="list-group blog-nav">
<li class="list-group-item">» <a href="blog.html">January 2016</a></li>
<li class="list-group-item">» <a href="blog.html">February 2016</a></li>
<li class="list-group-item">» <a href="blog.html">March 2016</a></li>
<li class="list-group-item">» <a href="blog.html">April 2016</a></li>
<li class="list-group-item">» <a href="blog.html">May 2016</a></li>
</ul>
</div>
</div>CSS code
Scoped CSS that styles the component. Paste it after Bootstrap 3.3.6 to keep the design, spacing, and responsiveness consistent.
Downloadbody{margin-top:20px;}
.title {
border-bottom: 3px solid #90caf9;
}
.title {
font-size: 18px;
line-height: 1;
margin: 0 0 10px;
padding: 0;
}
.title span {
border-bottom: 3px solid #1e88e5;
}
.title span {
display: inline-block;
margin-bottom: -3px;
padding-bottom: 10px;
}
/* -------------------------------------------------------------- Blog -------------------------------------------------------------- */
.blog-list { padding-bottom: 25px }
.blog-list:hover { border: 1px solid #aaa }
.blog-list .caption { color: #666 }
.blog-list .caption h5 { font-size: 16px }
.blog-list img { width: 100% }
.blog-list .btn { float: right }
.blog-list small {
display: block;
margin-bottom: 5px
}
.blog-list small,
.blog-list small a { color: silver }
.blog-list small span { margin-right: 7px }
.blog-list .caption a.btn:hover { text-decoration: underline }
.blog-info {
font-size: 12px;
margin-bottom: 10px
}
.blog-info,
.blog-info a { color: #cfcfcf }
.blog-info i { margin-left: 10px }
.blog-info i:first-child { margin-left: 0 }
.blog-nav .list-group-item {
padding-left: 10px;
border: 0;
border-bottom: 1px dotted #ccc;
background: transparent
}
.blog-detail-content { margin-bottom: 30px }
.blog-detail-thumb img { width: 100% }
/* -------------------------------------------------------------- End of Blog -------------------------------------------------------------- */
Similar snippets
FAQ
How do I use this snippet?
Include Bootstrap 3.3.6, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.
Can I use it in commercial projects?
Yes. It’s free for personal and commercial work; check the snippets license for details.
Is it responsive?
Yes. It inherits the responsive grid and components from Bootstrap 3.3.6.

About this bootstrap example/template
This free Bootstrap 3.3.6 snippet, Latest blog posts, was published on Aug 3rd 2016, 16:29 by Bootdey Admin.
Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.
Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.
Already trusted in 1.1K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.
Bootstrap 3.3.6
<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>
This code example is based on bootstrap 3.3.6 and the grid system of this framework
Responsive
Based on bootstrap framework makes all the layouts perfectly responsive for all devices
Crossbrowser compatibility
Tested on all major browsers, it works smoothly on all of them
semantic html 5
Built on html / css3 the code quality is really amazing
Simple Integration
This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working