nodebb-theme-harmony 0.0.8 → 0.0.9
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 +1 -1
- package/templates/categories.tpl +0 -1
- package/templates/notifications.tpl +1 -2
- package/templates/partials/users/item.tpl +31 -1
- package/templates/popular.tpl +0 -1
- package/templates/recent.tpl +0 -2
- package/templates/tag.tpl +0 -2
- package/templates/tags.tpl +0 -1
- package/templates/top.tpl +0 -1
- package/templates/unread.tpl +0 -1
package/package.json
CHANGED
package/templates/categories.tpl
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
<div class="notifications">
|
|
2
|
-
|
|
3
2
|
<div class="btn-toolbar justify-content-end" role="toolbar">
|
|
4
3
|
<button class="btn btn-light" component="notifications/mark_all">[[notifications:mark_all_read]]</button>
|
|
5
4
|
</div>
|
|
6
5
|
|
|
7
|
-
<hr />
|
|
6
|
+
<hr class="text-muted opacity-25"/>
|
|
8
7
|
|
|
9
8
|
<div class="row">
|
|
10
9
|
<div class="col-12 col-md-3 col-lg-2 border-end-md text-sm mb-3">
|
|
@@ -1,7 +1,37 @@
|
|
|
1
1
|
<a href="{config.relative_path}/user/{./userslug}" class="btn-ghost align-items-start justify-content-start">
|
|
2
2
|
{buildAvatar(@value, "48px", true, "flex-shrink-0")}
|
|
3
|
-
<div class="d-flex flex-column text-truncate">
|
|
3
|
+
<div class="d-flex flex-column text-truncate align-items-start">
|
|
4
4
|
<div class="fw-semibold text-truncate" title="{./displayname}">{./displayname}</div>
|
|
5
5
|
<div class="text-xs text-muted text-truncate">@{./username}</div>
|
|
6
|
+
|
|
7
|
+
{{{ if section_online }}}
|
|
8
|
+
<div class="card card-header border py-0 px-1 text-xs">
|
|
9
|
+
<span class="timeago" title="{./lastonlineISO}"></span>
|
|
10
|
+
</div>
|
|
11
|
+
{{{ end }}}
|
|
12
|
+
|
|
13
|
+
{{{ if section_joindate }}}
|
|
14
|
+
<div class="card card-header border py-0 px-1 text-xs">
|
|
15
|
+
<span class="timeago" title="{./joindateISO}"></span>
|
|
16
|
+
</div>
|
|
17
|
+
{{{ end }}}
|
|
18
|
+
|
|
19
|
+
{{{ if section_sort-reputation }}}
|
|
20
|
+
<div class="card card-header border py-0 px-1 text-xs">
|
|
21
|
+
<span class="formatted-number">{./reputation}</span>
|
|
22
|
+
</div>
|
|
23
|
+
{{{ end }}}
|
|
24
|
+
|
|
25
|
+
{{{ if section_sort-posts }}}
|
|
26
|
+
<div class="card card-header border py-0 px-1 text-xs">
|
|
27
|
+
<span class="formatted-number">{./postcount}</span>
|
|
28
|
+
</div>
|
|
29
|
+
{{{ end }}}
|
|
30
|
+
|
|
31
|
+
{{{ if section_flagged }}}
|
|
32
|
+
<div class="card card-header border py-0 px-1 text-xs">
|
|
33
|
+
<span class="formatted-number">{./flags}</span>
|
|
34
|
+
</div>
|
|
35
|
+
{{{ end }}}
|
|
6
36
|
</div>
|
|
7
37
|
</a>
|
package/templates/popular.tpl
CHANGED
package/templates/recent.tpl
CHANGED
package/templates/tag.tpl
CHANGED
package/templates/tags.tpl
CHANGED
package/templates/top.tpl
CHANGED
package/templates/unread.tpl
CHANGED