nodebb-theme-persona 14.2.34 → 14.2.36
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
|
@@ -3,18 +3,27 @@
|
|
|
3
3
|
<div class="profile row">
|
|
4
4
|
<h1 class="fullname text-center fs-2 text-secondary fw-light">{{{ if fullname }}}{fullname}{{{ else }}}{username}{{{ end }}}</h1>
|
|
5
5
|
<div class="d-flex gap-2 justify-content-center mb-2" component="user/badges"></div>
|
|
6
|
-
<h2 class="username text-center fs-5"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
6
|
+
<h2 class="username text-center fs-5">@{username}</h2>
|
|
7
|
+
{{{ if isAdminOrGlobalModeratorOrModerator }}}
|
|
8
|
+
{{{ if banned }}}
|
|
9
|
+
<div class="text-center">
|
|
10
|
+
{{{ if banned_until }}}
|
|
11
|
+
[[user:info.banned-until, {isoTimeToLocaleString(./banned_until_readable, config.userLang)}]]
|
|
12
|
+
{{{ else }}}
|
|
13
|
+
[[user:info.banned-permanently]]
|
|
14
|
+
{{{ end }}}
|
|
15
|
+
</div>
|
|
16
|
+
{{{ end }}}
|
|
17
|
+
{{{ if muted }}}
|
|
18
|
+
<div class="text-center">
|
|
19
|
+
{{{ if mutedUntil }}}
|
|
20
|
+
[[user:info.muted-until, {isoTimeToLocaleString(./muted_until_readable, config.userLang)}]]
|
|
21
|
+
{{{ else }}}
|
|
22
|
+
[[user:info.muted-permanently]]
|
|
23
|
+
{{{ end }}}
|
|
24
|
+
</div>
|
|
25
|
+
{{{ end }}}
|
|
26
|
+
{{{ end }}}
|
|
18
27
|
|
|
19
28
|
{{{ if selectedGroup.length }}}
|
|
20
29
|
<div class="d-flex gap-1 flex-wrap justify-content-center mb-3">
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<a data-bs-toggle="dropdown" data-bs-
|
|
1
|
+
<a data-bs-toggle="dropdown" data-bs-auto-close="outside" href="#" role="button" class="nav-link position-relative" aria-haspopup="true" aria-expanded="false" aria-label="[[global:header.notifications]]">
|
|
2
2
|
<i component="notifications/icon" class="fa fa-fw {{{ if unreadCount.notification}}}fa-bell{{{ else }}}fa-bell-o{{{ end }}} unread-count" data-content="{unreadCount.notification}"></i>
|
|
3
3
|
</a>
|
|
4
4
|
|