Mailspring/_includes/sidebar_section.html
2015-10-02 10:57:48 -07:00

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>