style: remove comment counter from post cards

This commit is contained in:
Oliver Booth 2024-04-27 16:27:08 +01:00
parent 96e63a3088
commit 55b9f79e46
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
2 changed files with 0 additions and 7 deletions

View File

@ -50,12 +50,6 @@
<span>{{author.name}}<span>
<span> &bull; </span>
<abbr title="{{ post.formattedDate }}">{{ post.date_humanized }}</abbr>
{{#if post.enable_comments}}
<span> &bull; </span>
<a href="{{post.url}}#disqus_thread" data-disqus-identifier="{{post.disqus_identifier}}">
Loading comment count &hellip;
</a>
{{/if}}
</span>
</div>
<div class="card-body">

View File

@ -53,7 +53,6 @@ class UI {
formattedDate: post.updated ? post.formattedUpdateDate : post.formattedPublishDate,
date_humanized: `${post.updated ? "Updated" : "Published"} ${post.humanizedTimestamp}`,
enable_comments: post.commentsEnabled,
disqus_identifier: post.identifier,
trimmed: post.trimmed,
tags: post.tags
},