banner.ejs 398 B

12345678910
  1. <% if (post.link){ %>
  2. <a href="<%- url_for(post.link) %>" target="_blank" itemprop="url"><img src="<%- post.banner %>" class="article-banner"></a>
  3. <% } else if (post.title){ %>
  4. <% if (index){ %>
  5. <a href="<%- url_for(post.path) %>" itemprop="url"><img src="<%- post.banner %>" class="article-banner"></a>
  6. <% } else { %>
  7. <img src="<%- post.banner %>" class="article-banner">
  8. <% } %>
  9. <% } %>