Path: blob/main/src/resources/projects/website/templates/navicon.ejs
12923 views
<% if(item.icon) { %>
<i
class="bi <%- item.icon.startsWith('bi-') ? item.icon : 'bi-' + item.icon %>"
role="img"
<% if(item["aria-label"]){ %>
aria-label="<%- item["aria-label"] %>"
<% } %>>
</i>
<% } %>