nodebb-theme-harmony 2.1.6 → 2.1.8
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
|
@@ -12,4 +12,11 @@
|
|
|
12
12
|
<i class="fa fa-fw fa-eye visible-xs-inline" title="[[global:views]]"></i>
|
|
13
13
|
<span class="fw-bold" title="{viewcount}">{humanReadableNumber(viewcount)}</span>
|
|
14
14
|
<span class="hidden-xs text-lowercase fw-normal">[[global:views]]</span>
|
|
15
|
-
</span>
|
|
15
|
+
</span>
|
|
16
|
+
{{{ if ./followercount }}}
|
|
17
|
+
<span class="badge text-body border border-gray-300 stats text-xs">
|
|
18
|
+
<i class="fa fa-fw fa-bell-o visible-xs-inline" title="[[global:watching]]"></i>
|
|
19
|
+
<span class="fw-bold" title="{viewcount}">{humanReadableNumber(followercount)}</span>
|
|
20
|
+
<span class="hidden-xs text-lowercase fw-normal">[[global:watching]]</span>
|
|
21
|
+
</span>
|
|
22
|
+
{{{ end }}}
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
<a component="topic/delete/posts" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem"><i class="fa fa-fw fa-trash-o text-secondary"></i> [[topic:thread-tools.delete-posts]]</a>
|
|
66
66
|
</li>
|
|
67
67
|
{{{ end }}}
|
|
68
|
-
|
|
68
|
+
{{{ end }}}
|
|
69
|
+
<!-- plugins only add to thread_tools if user has permission to perform action -->
|
|
69
70
|
{{{ each thread_tools }}}
|
|
70
71
|
<li>
|
|
71
72
|
<a href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2 {./class}" role="menuitem"><i class="fa fa-fw text-secondary {./icon}"></i> {./title}</a>
|
|
72
73
|
</li>
|
|
73
74
|
{{{ end }}}
|
|
74
|
-
{{{ end }}}
|