mirror of
https://github.com/wahyd4/hexo-phase-junv.git
synced 2026-08-10 13:35:52 +10:00
13 lines
491 B
Plaintext
13 lines
491 B
Plaintext
<% if (item.link){ %>
|
|
<% if (item.title){ %>
|
|
<h1 class="title"><a href="<%- item.link %>" class="link" target="_blank"><%= item.title %></a></h1>
|
|
<% } else { %>
|
|
<h1 class="title"><a href="<%- item.link %>" class="link" target="_blank"><%= item.link %></a></h1>
|
|
<% } %>
|
|
<% } else { %>
|
|
<% if (index){ %>
|
|
<h1 class="title"><a href="<%- config.root %><%- item.path %>"><%= item.title %></a></h1>
|
|
<% } else { %>
|
|
<h1 class="title"><%= item.title %></h1>
|
|
<% } %>
|
|
<% } %> |