mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
10 lines
397 B
HTML
10 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>
|