mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-08 01:04:39 +08:00
11 lines
397 B
HTML
11 lines
397 B
HTML
|
<div class="heading">{{include.section.name}}</div>
|
||
|
<ul>
|
||
|
{% for item in include.section.items %}
|
||
|
{% if item.items %}
|
||
|
{% include sidebar_section.html section=item %}
|
||
|
{% else %}
|
||
|
<li class="{% if page.url contains item.link %}active{% endif %}"><a href="{{item.link}}" {% if item.external %}target="_blank"{% endif %}>{{item.name}}</a></li>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</ul>
|