nm3clol-express-app/app/views/includes/breadcrumbs.ejs

12 lines
464 B
Plaintext

<h1 class="mt-5" style="font-family: 'Covered By Your Grace'">
<% breadcrumbs.forEach(function(breadcrumb, index) { %>
<% if (index > 0 && index < breadcrumbs.length) { %>
<span class="separator">&rsaquo; </span>
<% } %>
<% if (index === breadcrumbs.length-1) { %>
<%=breadcrumb.title%>
<% } else { %>
<a href="<%=breadcrumb.url%>"><%=breadcrumb.title%></a>
<% } %>
<% }) %>
</h1>