index.ejs 378 B

1234567891011121314
  1. <div class="share-container">
  2. <% if (theme.share === 'jiathis') { %>
  3. <%- partial('jiathis') %>
  4. <% } %>
  5. <% if (theme.share === 'bdshare') { %>
  6. <%- partial('bdshare') %>
  7. <% } %>
  8. <% if (theme.share === 'addtoany') { %>
  9. <%- partial('addtoany') %>
  10. <% } %>
  11. </div>
  12. <% if (!theme.share || theme.share === 'default') { %>
  13. <%- partial('default', { post: post }) %>
  14. <% } %>