Skip to content

Instantly share code, notes, and snippets.

@ramnathv
Created January 6, 2013 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramnathv/4464443 to your computer and use it in GitHub Desktop.
Save ramnathv/4464443 to your computer and use it in GitHub Desktop.
Tabs Template
<div class="tabbable">
<ul class="nav nav-tabs">
{{# slide.blocks }}
<li><a href="#{{{ name }}}" data-toggle="tab">{{{ name }}}</a></li>
{{/ slide.blocks }}
</ul>
<div class="tab-content">
{{# slide.blocks }}
<div class="tab-pane fade in active" id="{{{ name }}}">
{{{ html }}}
</div>
{{/ slide.blocks }}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment