Co-Authored-By: Jean-Michel Claus <jmc@edx.org> Co-Authored-By: Brian Talbot <btalbot@edx.org> Co-Authored-By: Tim Babych <tim@edx.org> Co-Authored-By: Oleg Marshev <oleg@edx.org> Co-Authored-By: Chris Rodriguez <crodriguez@edx.org>
14 lines
384 B
Plaintext
14 lines
384 B
Plaintext
<% var hasIcon = icon ? 1 : 0; %>
|
|
|
|
<a class="tab-label <% if (hasIcon) { print('has-icon') } %>" href="#">
|
|
<% if (hasIcon) { %><i class="icon <%= icon %>"></i> <% } %><%- gettext(name) %>
|
|
</a>
|
|
|
|
<% if (is_closable) { %>
|
|
<a href="#" class="action-close">
|
|
<i class="icon fa fa-times-circle"></i>
|
|
<span class="sr"><%- gettext("Clear search results") %></span>
|
|
</a>
|
|
<% } %>
|
|
|