Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.
Eoghan Tadhg McInerney edited this page May 18, 2016 · 1 revision

Creating tabs is easy. Use the {{>tabs}} template. Use this template to display tabs throughout your application with a suite of options.


##Usage Place the {{>tabs}} template where ever you intend to place a set of tabs. After you have placed the {{>tabs}} template in your template file, you need to ensure your given template has the correct data parameters setup.

Content Scope

tabs: [{ //If sidebar has tabs: use this property
        title: 'Library',
        id: 'library',
        template : 'library'
    }
];

Tabs have simple data parameter requirements. Include the following:

  • title This viewable title
  • id Should not include spaces
  • template the template file containing the tab content

Simply add additional sets for additional tabs.

Clone this wiki locally