nodebb-theme-harmony 2.0.36 → 2.0.38

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodebb-theme-harmony",
3
- "version": "2.0.36",
3
+ "version": "2.0.38",
4
4
  "nbbpm": {
5
5
  "compatibility": "^4.0.0"
6
6
  },
@@ -13,6 +13,12 @@
13
13
  {./descriptionParsed}
14
14
  </div>
15
15
  {{{ end }}}
16
+ {{{ if ./handleFull }}}
17
+ <p class="text-secondary text-sm fst-italic">
18
+ [[category:handle.description, {handleFull}]]
19
+ <a href="#" class="link-secondary" data-action="copy" data-clipboard-text="{handleFull}"><i class="fa fa-fw fa-copy" aria-hidden="true"></i></a>
20
+ </p>
21
+ {{{ end }}}
16
22
  <div class="d-flex flex-wrap gap-2 {{{ if config.theme.centerHeaderElements }}}justify-content-center{{{ end }}}">
17
23
  <span class="badge text-body border border-gray-300 stats text-xs">
18
24
  <span title="{totalTopicCount}" class="fw-bold">{humanReadableNumber(totalTopicCount)}</span>
@@ -1,5 +1,7 @@
1
1
  <div class="d-flex gap-2 mb-2 align-items-center flex-nowrap text-sm">
2
- {buildAvatar(post.user, "24px", true)}
2
+ <div>
3
+ {buildAvatar(post.user, "24px", true)}
4
+ </div>
3
5
  <div class="text-truncate">
4
6
  <a href="{{{ if post.user.userslug }}}{config.relative_path}/user/{post.user.userslug}{{{else }}}#{{{ end }}}">{post.user.displayname}</a>
5
7
  </div>