mirror of
https://github.com/wahyd4/Libr-mobile.git
synced 2026-08-10 13:26:21 +10: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 @>
|