2015-01-11 16:55:54 -05:00
|
|
|
<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}}
|
2015-01-12 19:51:46 -05:00
|
|
|
<li class="tab-item {{activeTab slug}}" style="">{{name}}</li>
|
2015-01-11 16:55:54 -05:00
|
|
|
{{/each}}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tabs-content-container">
|
|
|
|
|
{{> UI.contentBlock}}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</template>
|