nodebb-theme-harmony 1.1.63 → 1.1.65
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
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- IMPORT partials/account/header.tpl -->
|
|
2
|
+
|
|
3
|
+
<div class="d-flex justify-content-between align-items-center mb-3">
|
|
4
|
+
<div class="d-flex gap-1">
|
|
5
|
+
<h3 class="fw-semibold fs-5 mb-0">{title}</h3>
|
|
6
|
+
</div>
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<div>
|
|
10
|
+
<input component="tags/watch" type="text" class="form-control">
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
<!-- IMPORT partials/account/footer.tpl -->
|
|
@@ -44,6 +44,13 @@
|
|
|
44
44
|
<div class="flex-grow-1">[[user:watched_categories]]</div>
|
|
45
45
|
<span class="flex-shrink-0 text-xs" title="{counts.categoriesWatched}">{counts.categoriesWatched}</span>
|
|
46
46
|
</a>
|
|
47
|
+
{{{ if isSelf }}}
|
|
48
|
+
<a href="{config.relative_path}/user/{userslug}/tags" class="btn-ghost fw-semibold
|
|
49
|
+
{{{ if template.account/tags }}}active{{{ end }}}">
|
|
50
|
+
<div class="flex-grow-1">[[user:watched-tags]]</div>
|
|
51
|
+
<span class="flex-shrink-0 text-xs" title="{counts.tagsWatched}">{counts.tagsWatched}</span>
|
|
52
|
+
</a>
|
|
53
|
+
{{{ end }}}
|
|
47
54
|
|
|
48
55
|
<a href="{config.relative_path}/user/{userslug}/blocks" class="btn-ghost fw-semibold
|
|
49
56
|
{{{ if template.account/blocks }}}active{{{ end }}}">
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{{{ if config.loggedIn }}}
|
|
2
|
+
<div class="btn-group bottom-sheet" component="tag/watch">
|
|
3
|
+
<button class="btn-ghost-sm d-flex gap-2 dropdown-toggle" data-bs-toggle="dropdown" type="button">
|
|
4
|
+
<span component="tag/following/menu" class="d-flex gap-2 align-items-center{{{ if !isFollowing }}} hidden{{{ end }}}">
|
|
5
|
+
<i class="flex-shrink-0 fa fa-fw fa-bell-o link-primary"></i>
|
|
6
|
+
<span class="d-none d-md-inline fw-semibold">[[tags:watching]]</span>
|
|
7
|
+
</span>
|
|
8
|
+
|
|
9
|
+
<span component="tag/not-following/menu" class="d-flex gap-2 align-items-center{{{ if isFollowing}}} hidden{{{ end }}}">
|
|
10
|
+
<i class="flex-shrink-0 fa fa-fw fa-bell-slash-o link-primary"></i>
|
|
11
|
+
<span class="d-none d-md-inline fw-semibold">[[tags:not-watching]]</span>
|
|
12
|
+
</span>
|
|
13
|
+
</button>
|
|
14
|
+
<ul class="dropdown-menu p-1 text-sm">
|
|
15
|
+
<li>
|
|
16
|
+
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="tag/following">
|
|
17
|
+
<div class="flex-grow-1 d-flex flex-column">
|
|
18
|
+
<span class="d-flex align-items-center gap-2">
|
|
19
|
+
<i class="flex-shrink-0 fa fa-fw fa-bell-o"></i>
|
|
20
|
+
<span class="flex-grow-1 fw-semibold">[[tags:watching]]</span>
|
|
21
|
+
</span>
|
|
22
|
+
<div class="help-text text-muted text-xs">[[tags:watching.description]]</div>
|
|
23
|
+
</div>
|
|
24
|
+
<span class="flex-shrink-0"><i component="tag/following/check" class="fa fa-fw {{{ if isFollowing }}}fa-check{{{ end }}}"></i></span>
|
|
25
|
+
</a>
|
|
26
|
+
</li>
|
|
27
|
+
|
|
28
|
+
<li>
|
|
29
|
+
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="tag/not-following">
|
|
30
|
+
<div class="flex-grow-1 d-flex flex-column">
|
|
31
|
+
<span class="d-flex align-items-center gap-2">
|
|
32
|
+
<i class="flex-shrink-0 fa fa-fw fa-bell-slash-o"></i>
|
|
33
|
+
<span class="flex-grow-1 fw-semibold">[[tags:not-watching]]</span>
|
|
34
|
+
</span>
|
|
35
|
+
<div class="help-text text-muted text-xs">[[tags:not-watching.description]]</div>
|
|
36
|
+
</div>
|
|
37
|
+
<span class="flex-shrink-0"><i component="tag/not-following/check" class="fa fa-fw {{{ if !isFollowing }}}fa-check{{{ end }}}"></i></span>
|
|
38
|
+
</a>
|
|
39
|
+
</li>
|
|
40
|
+
</ul>
|
|
41
|
+
</div>
|
|
42
|
+
{{{ end }}}
|
package/templates/topic.tpl
CHANGED
|
@@ -51,6 +51,10 @@
|
|
|
51
51
|
<!-- IMPORT partials/topic/merged-message.tpl -->
|
|
52
52
|
{{{ end }}}
|
|
53
53
|
|
|
54
|
+
{{{ if forker }}}
|
|
55
|
+
<!-- IMPORT partials/topic/forked-message.tpl -->
|
|
56
|
+
{{{ end }}}
|
|
57
|
+
|
|
54
58
|
{{{ if !scheduled }}}
|
|
55
59
|
<!-- IMPORT partials/topic/deleted-message.tpl -->
|
|
56
60
|
{{{ end }}}
|