nodebb-theme-harmony 1.2.87 → 1.2.89
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
|
@@ -12,18 +12,6 @@
|
|
|
12
12
|
<input class="form-control" type="text" id="fullname" name="fullname" placeholder="[[user:fullname]]" value="{fullname}">
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
{{{ if allowWebsite }}}
|
|
16
|
-
<div class="mb-3">
|
|
17
|
-
<label class="form-label fw-bold" for="website">[[user:website]]</label>
|
|
18
|
-
<input class="form-control" type="text" id="website" name="website" placeholder="http://..." value="{website}">
|
|
19
|
-
</div>
|
|
20
|
-
{{{ end }}}
|
|
21
|
-
|
|
22
|
-
<div class="mb-3">
|
|
23
|
-
<label class="form-label fw-bold" for="location">[[user:location]]</label>
|
|
24
|
-
<input class="form-control" type="text" id="location" name="location" placeholder="[[user:location]]" value="{location}">
|
|
25
|
-
</div>
|
|
26
|
-
|
|
27
15
|
<div class="mb-3">
|
|
28
16
|
<label class="form-label fw-bold" for="birthday">[[user:birthday]]</label>
|
|
29
17
|
<input class="form-control" type="date" id="birthday" name="birthday" value="{birthday}" placeholder="mm/dd/yyyy">
|
|
@@ -51,8 +39,6 @@
|
|
|
51
39
|
{{{ end }}}
|
|
52
40
|
</select>
|
|
53
41
|
{{{ end }}}
|
|
54
|
-
|
|
55
|
-
|
|
56
42
|
</div>
|
|
57
43
|
{{{ end }}}
|
|
58
44
|
|
|
@@ -63,24 +63,6 @@
|
|
|
63
63
|
</div>
|
|
64
64
|
{{{ end }}}
|
|
65
65
|
|
|
66
|
-
{{{ if websiteName }}}
|
|
67
|
-
<div class="stat">
|
|
68
|
-
<div class="align-items-center justify-content-center card card-header px-0 py-3 border-0 rounded-1 h-100 gap-2">
|
|
69
|
-
<span class="stat-label text-xs fw-semibold"><i class="text-muted fa-solid fa-globe"></i> <span>[[user:website]]</span></span>
|
|
70
|
-
<a class="text-sm text-center text-break w-100 px-2 ff-secondary text-underline text-reset" href="{websiteLink}" rel="nofollow noreferrer me">{websiteName}</a>
|
|
71
|
-
</div>
|
|
72
|
-
</div>
|
|
73
|
-
{{{ end }}}
|
|
74
|
-
|
|
75
|
-
{{{ if location }}}
|
|
76
|
-
<div class="stat">
|
|
77
|
-
<div class="align-items-center justify-content-center card card-header px-0 py-3 border-0 rounded-1 h-100 gap-2">
|
|
78
|
-
<span class="stat-label text-xs fw-semibold"><i class="text-muted fa-solid fa-map-pin"></i> <span>[[user:location]]</span></span>
|
|
79
|
-
<span class="text-center text-break w-100 px-2 fs-6 ff-secondary">{location}</span>
|
|
80
|
-
</div>
|
|
81
|
-
</div>
|
|
82
|
-
{{{ end }}}
|
|
83
|
-
|
|
84
66
|
{{{ if age }}}
|
|
85
67
|
<div class="stat">
|
|
86
68
|
<div class="align-items-center justify-content-center card card-header px-0 py-3 border-0 rounded-1 h-100 gap-2">
|
|
@@ -96,7 +78,7 @@
|
|
|
96
78
|
<div class="align-items-center justify-content-center card card-header px-0 py-3 border-0 rounded-1 h-100 gap-2">
|
|
97
79
|
<span class="stat-label text-xs fw-semibold"><span><i class="text-muted {./icon}"></i> {./name}</span></span>
|
|
98
80
|
{{{ if (./type == "input-link") }}}
|
|
99
|
-
<a class="text-sm text-center text-break w-100 px-2 ff-secondary text-underline text-reset" href="{./value}" rel="nofollow noreferrer
|
|
81
|
+
<a class="text-sm text-center text-break w-100 px-2 ff-secondary text-underline text-reset" href="{./value}" rel="nofollow noreferrer">{./linkValue}</a>
|
|
100
82
|
{{{ else }}}
|
|
101
83
|
<span class="text-center {{{ if (./type == "input-number") }}}fs-2{{{else }}}fs-6{{{ end }}} ff-secondary">{./value}</span>
|
|
102
84
|
{{{ end }}}
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<h2 class="fullname fw-semibold fs-2 tracking-tight mb-0">{{{ if fullname }}}{fullname}{{{ else }}}{username}{{{ end }}}</h2>
|
|
32
32
|
<div class="d-flex flex-wrap gap-1 text-sm align-items-center">
|
|
33
33
|
<span class="username fw-bold">{{{ if !banned }}}@{username}{{{ else }}}[[user:banned]]{{{ end }}}</span>
|
|
34
|
-
<div class="d-flex align-items-center gap-1 p-1">
|
|
34
|
+
<div class="d-flex align-items-center gap-1 p-1 flex-wrap">
|
|
35
35
|
{{{ if selectedGroup.length }}}
|
|
36
36
|
{{{ each selectedGroup }}}
|
|
37
37
|
{{{ if ./slug }}}
|
package/templates/users.tpl
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
{{{ if displayUserSearch }}}
|
|
18
18
|
<div class="search">
|
|
19
19
|
<div class="input-group">
|
|
20
|
-
<input class="form-control form-control-sm" id="search-user" type="text" placeholder="[[global:search]]"/>
|
|
20
|
+
<input class="form-control form-control-sm" id="search-user" type="text" placeholder="[[global:search]]" autocomplete="off" />
|
|
21
21
|
<button class="btn btn-primary btn-sm" type="button" aria-label="[[global:search]]">
|
|
22
22
|
<i component="user/search/icon" class="fa fa-search"></i>
|
|
23
23
|
</button>
|