nodebb-theme-harmony 1.2.40 → 1.2.42
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
package/scss/header.scss
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
<i class="fa fa-lock"></i>
|
|
37
37
|
<span>[[topic:locked]]</span>
|
|
38
38
|
</span>
|
|
39
|
-
<span class="badge border border-gray-300 text-body {{{ if !./oldCid }}}hidden{{{ end }}}">
|
|
39
|
+
<span component="topic/moved" class="badge border border-gray-300 text-body {{{ if !./oldCid }}}hidden{{{ end }}}">
|
|
40
40
|
<i class="fa fa-arrow-circle-right"></i>
|
|
41
41
|
<span>[[topic:moved]]</span>
|
|
42
42
|
</span>
|
package/templates/topic.tpl
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{{{ end }}}
|
|
12
12
|
|
|
13
13
|
<div class="d-flex flex-column gap-3" itemid="{url}" itemscope itemtype="https://schema.org/DiscussionForumPosting">
|
|
14
|
-
<meta itemprop="headline" content="{
|
|
14
|
+
<meta itemprop="headline" content="{escape(titleRaw)}">
|
|
15
15
|
<meta itemprop="url" content="{url}">
|
|
16
16
|
<meta itemprop="datePublished" content="{timestampISO}">
|
|
17
17
|
<meta itemprop="dateModified" content="{lastposttimeISO}">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<i class="fa fa-lock"></i>
|
|
39
39
|
[[topic:locked]]
|
|
40
40
|
</span>
|
|
41
|
-
<a href="{config.relative_path}/category/{oldCid}" class="badge badge border border-gray-300 text-body text-decoration-none {{{ if !oldCid }}}hidden{{{ end }}}">
|
|
41
|
+
<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 }}}">
|
|
42
42
|
<i class="fa fa-arrow-circle-right"></i>
|
|
43
43
|
{{{ if privileges.isAdminOrMod }}}[[topic:moved-from, {oldCategory.name}]]{{{ else }}}[[topic:moved]]{{{ end }}}
|
|
44
44
|
</a>
|