mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
13 lines
453 B
HTML
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 @>
|