You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
529 B

4 years ago
<% if (theme.plugins.wordcount) { %>
4 years ago
<div class="new-meta-item wordcount">
<a class='notlink'>
4 years ago
<i class="<%- theme.meta.wordcount.icon_wordcount %> fa-fw" aria-hidden="true"></i>
4 years ago
<p><%- __('post.wordcount', wordcount(post.content))%></p>
</a>
</div>
<div class="new-meta-item readtime">
<a class='notlink'>
4 years ago
<i class="<%- theme.meta.wordcount.icon_duration %> fa-fw" aria-hidden="true"></i>
4 years ago
<p><%- __('post.duration', min2read(post.content))%></p>
</a>
</div>
<% } %>