nodebb-theme-persona 13.3.18 → 13.3.20
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
|
@@ -48,13 +48,20 @@
|
|
|
48
48
|
[[user:info.username-history]]
|
|
49
49
|
</h5>
|
|
50
50
|
<div class="card-body">
|
|
51
|
-
<ul class="list-
|
|
52
|
-
{{{each usernames}}}
|
|
53
|
-
<li class="
|
|
54
|
-
{
|
|
55
|
-
|
|
51
|
+
<ul class="list-unstyled mb-0">
|
|
52
|
+
{{{ each usernames }}}
|
|
53
|
+
<li class="d-flex justify-content-between mb-1">
|
|
54
|
+
<span class="text-sm">{./value}</span>
|
|
55
|
+
|
|
56
|
+
<div>
|
|
57
|
+
{{{ if ./byUid }}}
|
|
58
|
+
<a class="lh-1" href="{{{ if ./byUser.userslug }}}{config.relative_path}/user/{./byUser.userslug}{{{ else }}}#{{{ end }}}">
|
|
59
|
+
{buildAvatar(./byUser, "18px", true)}</a>
|
|
60
|
+
{{{ end }}}
|
|
61
|
+
<span class="timeago text-sm lh-1" title="{./timestampISO}"></span>
|
|
62
|
+
</div>
|
|
56
63
|
</li>
|
|
57
|
-
{{{end}}}
|
|
64
|
+
{{{ end }}}
|
|
58
65
|
</ul>
|
|
59
66
|
</div>
|
|
60
67
|
</div>
|
|
@@ -64,13 +71,19 @@
|
|
|
64
71
|
[[user:info.email-history]]
|
|
65
72
|
</h5>
|
|
66
73
|
<div class="card-body">
|
|
67
|
-
<ul class="list-
|
|
68
|
-
{{{each emails}}}
|
|
69
|
-
<li class="
|
|
70
|
-
{
|
|
71
|
-
<
|
|
74
|
+
<ul class="list-unstyled mb-0">
|
|
75
|
+
{{{ each emails }}}
|
|
76
|
+
<li class="d-flex justify-content-between mb-1">
|
|
77
|
+
<span class="text-sm">{./value}</span>
|
|
78
|
+
<div>
|
|
79
|
+
{{{ if ./byUid }}}
|
|
80
|
+
<a class="lh-1" href="{{{ if ./byUser.userslug }}}{config.relative_path}/user/{./byUser.userslug}{{{ else }}}#{{{ end }}}">
|
|
81
|
+
{buildAvatar(./byUser, "18px", true)}</a>
|
|
82
|
+
{{{ end }}}
|
|
83
|
+
<span class="timeago text-sm lh-1" title="{./timestampISO}"></span>
|
|
84
|
+
</div>
|
|
72
85
|
</li>
|
|
73
|
-
{{{end}}}
|
|
86
|
+
{{{ end }}}
|
|
74
87
|
</ul>
|
|
75
88
|
</div>
|
|
76
89
|
</div>
|
|
@@ -32,6 +32,8 @@
|
|
|
32
32
|
</div>
|
|
33
33
|
|
|
34
34
|
<h2 component="topic/header" class="title mb-1">
|
|
35
|
+
<i component="topic/watched" class="fa fa-bell-o {{{ if !topics.followed }}}hidden{{{ end }}}" title="[[topic:watching]]"></i>
|
|
36
|
+
<i component="topic/watched" class="fa fa-eye-slash {{{ if !topics.ignored }}}hidden{{{ end }}}" title="[[topic:ignoring]]"></i>
|
|
35
37
|
<i component="topic/scheduled" class="fa fa-clock-o {{{ if !topics.scheduled }}}hidden{{{ end }}}" title="[[topic:scheduled]]"></i>
|
|
36
38
|
<i component="topic/pinned" class="fa fa-thumb-tack {{{ if (topics.scheduled || !topics.pinned) }}}hidden{{{ end }}}" title="{{{ if !../pinExpiry }}}[[topic:pinned]]{{{ else }}}[[topic:pinned-with-expiry, {../pinExpiryISO}]]{{{ end }}}"></i>
|
|
37
39
|
<i component="topic/locked" class="fa fa-lock {{{ if !topics.locked }}}hidden{{{ end }}}" title="[[topic:locked]]"></i>
|