Bootstrap 3 Template

This is a simple Twitter Bootstrap 3 template. You can fork it to get a ready to use Bootstrap 3 fiddle.

by octavioamu

HTML

<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<div class="container">
    
<h2>Example of creating Modal with Twitter Bootstrap</h2> 
    <div class="well">
        <a href="http://yahoo.com" id="example"  target="_blank" class="btn btn-danger" rel="popover">hover for popover</a> 
    </div>
</div>

JavaScript

$('#example').popover({
    html: true,
    trigger: 'hover',
    container: '#example',
    placement: 'auto',
    content: function () {
        return '<div class="box"><a href="http://google.com" target="_blank">Google</a></div>';
    }
});