banner.ejs 443 B

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