nodebb-theme-harmony 2.0.0-pre.25 → 2.0.0-pre.27
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,18 +97,22 @@
|
|
|
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
|
-
<a component="post/upvote" href="#" class="btn-ghost-sm
|
|
106
|
+
<a component="post/upvote" href="#" class="btn-ghost-sm{{{ if posts.upvoted }}} upvoted{{{ end }}}" title="[[topic:upvote-post]]">
|
|
103
107
|
<i class="fa fa-fw fa-chevron-up text-primary"></i>
|
|
104
108
|
</a>
|
|
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" component="post/vote-count" data-votes="{posts.votes}" title="[[global:voters]]">{posts.votes}</a>
|
|
109
113
|
|
|
110
114
|
{{{ if !downvote:disabled }}}
|
|
111
|
-
<a component="post/downvote" href="#" class="btn-ghost-sm
|
|
115
|
+
<a component="post/downvote" href="#" class="btn-ghost-sm{{{ if posts.downvoted }}} downvoted{{{ end }}}" title="[[topic:downvote-post]]">
|
|
112
116
|
<i class="fa fa-fw fa-chevron-down text-primary"></i>
|
|
113
117
|
</a>
|
|
114
118
|
{{{ end }}}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
<i class="fa fa-lock"></i>
|
|
45
45
|
<span>[[topic:locked]]</span>
|
|
46
46
|
</span>
|
|
47
|
-
<span component="topic/moved" class="badge border border-gray-300 text-body {{{ if !./oldCid }}}hidden{{{ end }}}">
|
|
47
|
+
<span component="topic/moved" class="badge border border-gray-300 text-body {{{ if (!./oldCid || (./oldCid == "-1")) }}}hidden{{{ end }}}">
|
|
48
48
|
<i class="fa fa-arrow-circle-right"></i>
|
|
49
49
|
<span>[[topic:moved]]</span>
|
|
50
50
|
</span>
|
package/templates/topic.tpl
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<span component="topic/locked" class="badge badge border border-gray-300 text-body {{{ if !locked }}}hidden{{{ end }}}">
|
|
36
36
|
<i class="fa fa-lock"></i> [[topic:locked]]
|
|
37
37
|
</span>
|
|
38
|
-
<a component="topic/moved" href="{config.relative_path}/category/{oldCid}" class="badge badge border border-gray-300 text-body text-decoration-none {{{ if !oldCid }}}hidden{{{ end }}}">
|
|
38
|
+
<a component="topic/moved" href="{config.relative_path}/category/{oldCid}" class="badge badge border border-gray-300 text-body text-decoration-none {{{ if (!oldCid || (oldCid == "-1")) }}}hidden{{{ end }}}">
|
|
39
39
|
<i class="fa fa-arrow-circle-right"></i> {{{ if privileges.isAdminOrMod }}}[[topic:moved-from, {oldCategory.name}]]{{{ else }}}[[topic:moved]]{{{ end }}}
|
|
40
40
|
</a>
|
|
41
41
|
{{{each icons}}}<span class="lh-1">{@value}</span>{{{end}}}
|