2015-01-12 19:51:46 -05:00

15 lines
394 B
HTML

<template name="teacherTabs">
<div class="tabs-container">
<!-- You can put the tabs anywhere and style them however you want! -->
<ul class="tabs-list">
{{#each tabs}}
<li class="tab-item {{activeTab slug}}" style="">{{name}}</li>
{{/each}}
</ul>
</div>
<div class="tabs-content-container">
{{> UI.contentBlock}}
</div>
</template>