<!DOCTYPE html>
<html>
    <head>
        <title>Examples</title>
        <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
        <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
        <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
        <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
    </head>

    <body>
        <div class="container">
            

<pre>&lt;%= toolbar id =&gt; &#39;my-toolbar&#39;,
            groups =&gt; [
                { buttons =&gt; [
                    [&#39;Button 1&#39;],
                    [&#39;Button 2&#39;],
                    [&#39;Button 3&#39;],
                  ],
                },
                { buttons =&gt; [
                    [&#39;Button 4&#39;, primary],
                    [&#39;Button 5&#39;],
                    [&#39;Button 6&#39;],
                  ],
                },
            ]
%&gt;</pre>
<pre>&lt;div class=&quot;btn-toolbar&quot; id=&quot;my-toolbar&quot;&gt;
    &lt;div class=&quot;btn-group&quot;&gt;
        &lt;button class=&quot;btn btn-default&quot; type=&quot;button&quot;&gt;Button 1&lt;/button&gt;
        &lt;button class=&quot;btn btn-default&quot; type=&quot;button&quot;&gt;Button 2&lt;/button&gt;
        &lt;button class=&quot;btn btn-default&quot; type=&quot;button&quot;&gt;Button 3&lt;/button&gt;
    &lt;/div&gt;
    &lt;div class=&quot;btn-group&quot;&gt;
        &lt;button class=&quot;btn btn-primary&quot; type=&quot;button&quot;&gt;Button 4&lt;/button&gt;
        &lt;button class=&quot;btn btn-default&quot; type=&quot;button&quot;&gt;Button 5&lt;/button&gt;
        &lt;button class=&quot;btn btn-default&quot; type=&quot;button&quot;&gt;Button 6&lt;/button&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
<div>    <div class="btn-toolbar" id="my-toolbar">        <div class="btn-group">            <button class="btn btn-default" type="button">Button 1</button>            <button class="btn btn-default" type="button">Button 2</button>            <button class="btn btn-default" type="button">Button 3</button>        </div>        <div class="btn-group">            <button class="btn btn-primary" type="button">Button 4</button>            <button class="btn btn-default" type="button">Button 5</button>            <button class="btn btn-default" type="button">Button 6</button>        </div>    </div></div>
        </div>
        <pre style="background-color: #fff; border-width: 0px;">



        </pre>
    </body>
</html>