counter.ejs 628 B

123456789
  1. <% if (post.comments) { %>
  2. <% if (theme.comment.disqus) { %>
  3. <a href="<%- post.permalink %>#comments" class="article-comment-link disqus-comment-count" data-disqus-url="<%= post.permalink %>"><%= __('article.comments') %></a>
  4. <% } else if (theme.comment.duoshuo) { %>
  5. <a href="<%- post.permalink %>#comments" class="article-comment-link ds-thread-count" data-thread-key="<%= post.permalink %>"><%= __('article.comments') %></a>
  6. <% } else if (theme.comment.youyan) { %>
  7. <a href="<%- post.permalink %>#comments" class="article-comment-link"><%= __('article.comments') %></a>
  8. <% } %>
  9. <% } %>