hexo-theme-amane/layout/common/post/banner.ejs

15 lines
470 B
Plaintext

<% if (post.link) { %>
<a href="<%- url_for(post.link) %>" target="_blank" itemprop="url">
<img src="<%- url_for(post.banner) %>" class="article-banner" />
</a>
<% } else if (post.title) { %>
<% if (index) { %>
<a href="<%- url_for(post.path) %>" itemprop="url">
<img src="<%- url_for(post.banner) %>" class="article-banner" />
</a>
<% } else { %>
<img src="<%- url_for(post.banner) %>" class="article-banner" />
<% } %>
<% } %>