You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.1 KiB

4 years ago
<header>
<div>
<% if (item.backurl) { %>
<a href='<%- item.backurl %>'><i class="<%- item.icon %> fa-fw" aria-hidden="true"></i><span class='name'><%- item.title %></span></a>
<% } else { %>
<i class="<%- item.icon %> fa-fw" aria-hidden="true"></i><span class='name'><%- item.title %></span>
<% } %>
</div>
4 years ago
<% if (item.class == 'toc') { %>
5 years ago
<!-- <div class='wrapper'><a class="s-toc rightBtn" rel="external nofollow noopener noreferrer" href="javascript:void(0)"><i class="fas fa-thumbtack fa-fw"></i></a></div> -->
6 years ago
<% } else if(item.more && item.more.url) { %>
5 years ago
<a class="rightBtn<%- item.more.animate ? ' ' + item.more.animate : '' %>"
5 years ago
<% if (item.more.rel) { %>
rel="<%- item.more.rel %>"
<% } else { %>
rel="external nofollow noopener noreferrer"
<% } %>
<% if (item.more.target) { %>
target="<%- item.more.target %>"
<% } %>
6 years ago
href="<%- url_for(item.more.url) %>"
title="<%- item.more.url %>">
<i class="<%- item.more.icon?item.more.icon:'fas fa-question-circle' %> fa-fw"></i></a>
<% } %>
</header>