-
-
Save oillio/544832 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<def tag="tabs"> | |
<set-scoped tab-names="&[]" tab-contents="&{}"> | |
<ul class="tabs" merge> | |
<do param="default" /> | |
</ul> | |
<do repeat="&scope.tab_names"> | |
<div id="#{this}"> | |
<%= scope.tab_contents[this] %> | |
</div> | |
</do> | |
</set-scoped> | |
</def> | |
<def tag="tab-content" attrs="id, label"> | |
<li><a href="##{id}"><%= label %></a></li> | |
<% scope.tab_names << id %> | |
<% scope.tab_contents[id] = parameters.default %> | |
</def> | |
Example: | |
<tabs> | |
<tab-content id="Feature1" label="One">Foo Bar Baz</tab-content> | |
<tab-content id="Feature2" label="Two">Foo Bar Baz</tab-content> | |
</tabs> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment