mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
12 lines
534 B
HTML
12 lines
534 B
HTML
<div class="section">
|
|
<a class="heading" href="{{include.section.link}}" {% if include.section.external %}target="_blank"{% endif %}>{{include.section.name}}</a>
|
|
<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>
|
|
</div>
|