I want create panels with Twitter Bootstrap in rails app.
<div class="panel panel-default">
<div class="panel-heading">Panel heading without title</div>
<div class="panel-body">
Panel content
</div>
</div>
According to the official doc, we will get like this:
but I just get the text.
Panel heading without title
Panel content
Hope someone can help me, thanks in advance!