Files
ionic-framework/docs/templates/menu-data.template.html
2014-03-17 14:22:16 -06:00

13 lines
453 B
HTML

<@ for section in doc.sections @>
<li class="menu-section">
<$ section.name $>
</li>
<@ for component in section.components @>
<li class="menu-item{% if page.path == "<$ component.href $>" %} active{% endif %}">
<a href="<$ version.current.href $>/<$ component.href $>">
<@ if component.docType == "directive" @> <$ component.name | dashCase $><@ else @><$ component.name $><@ endif @>
</a>
</li>
<@ endfor @>
<@ endfor @>