nodebb-theme-harmony 2.0.0-pre.25 → 2.0.0-pre.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -97,6 +97,10 @@
|
|
|
97
97
|
<a component="post/reply" href="#" class="btn-ghost-sm {{{ if !privileges.topics:reply }}}hidden{{{ end }}}" title="[[topic:reply]]"><i class="fa fa-fw fa-reply text-primary"></i></a>
|
|
98
98
|
<a component="post/quote" href="#" class="btn-ghost-sm {{{ if !privileges.topics:reply }}}hidden{{{ end }}}" title="[[topic:quote]]"><i class="fa fa-fw fa-quote-right text-primary"></i></a>
|
|
99
99
|
|
|
100
|
+
{{{ if ./announces }}}
|
|
101
|
+
<a component="post/announce-count" href="#" class="btn-ghost-sm" title="[[activitypub:announcers]]"><i class="fa fa-share-alt text-primary"></i> {./announces}</a>
|
|
102
|
+
{{{ end }}}
|
|
103
|
+
|
|
100
104
|
{{{ if !reputation:disabled }}}
|
|
101
105
|
<div class="d-flex votes align-items-center">
|
|
102
106
|
<a component="post/upvote" href="#" class="btn-ghost-sm {{{ if posts.upvoted }}}upvoted{{{ end }}}" title="[[topic:upvote-post]]">
|
|
@@ -105,7 +109,7 @@
|
|
|
105
109
|
|
|
106
110
|
<meta itemprop="upvoteCount" content="{posts.upvotes}">
|
|
107
111
|
<meta itemprop="downvoteCount" content="{posts.downvotes}">
|
|
108
|
-
<a href="#" class="
|
|
112
|
+
<a href="#" class="px-2 mx-1 btn-ghost-sm ff-secondary" component="post/vote-count" data-votes="{posts.votes}" title="[[global:voters]]">{posts.votes}</a>
|
|
109
113
|
|
|
110
114
|
{{{ if !downvote:disabled }}}
|
|
111
115
|
<a component="post/downvote" href="#" class="btn-ghost-sm {{{ if posts.downvoted }}}downvoted{{{ end }}}" title="[[topic:downvote-post]]">
|