nodebb-theme-persona 13.2.33 → 13.2.35
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/account/blocks.tpl +1 -1
- package/templates/account/categories.tpl +1 -1
- package/templates/account/followers.tpl +1 -1
- package/templates/account/following.tpl +1 -1
- package/templates/account/groups.tpl +1 -1
- package/templates/account/posts.tpl +1 -1
- package/templates/account/tags.tpl +1 -1
- package/templates/account/topics.tpl +1 -1
- package/templates/account/uploads.tpl +1 -1
- package/templates/topic.tpl +5 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- IMPORT partials/account/header.tpl -->
|
|
2
2
|
|
|
3
3
|
<div class="row">
|
|
4
|
-
<h1>{title}</h1>
|
|
4
|
+
<h1 class="fs-2">{title}</h1>
|
|
5
5
|
<div class="col-lg-12 mb-2">
|
|
6
6
|
<div class="btn-group bottom-sheet" component="category/watch/all">
|
|
7
7
|
<button class="btn btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" type="button">
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- IMPORT partials/account/header.tpl -->
|
|
2
2
|
|
|
3
3
|
<div class="row">
|
|
4
|
-
<h1>[[pages:{template.name}, {username}]]</h1>
|
|
4
|
+
<h1 class="fs-2">[[pages:{template.name}, {username}]]</h1>
|
|
5
5
|
|
|
6
6
|
<div class="col-12 groups list">
|
|
7
7
|
<div component="groups/container" id="groups-list" class="row">
|
package/templates/topic.tpl
CHANGED
|
@@ -47,6 +47,11 @@
|
|
|
47
47
|
<!-- IMPORT partials/topic/merged-message.tpl -->
|
|
48
48
|
{{{ end }}}
|
|
49
49
|
|
|
50
|
+
{{{ if forker }}}
|
|
51
|
+
<!-- IMPORT partials/topic/forked-message.tpl -->
|
|
52
|
+
{{{ end }}}
|
|
53
|
+
|
|
54
|
+
|
|
50
55
|
{{{ if !scheduled }}}
|
|
51
56
|
<!-- IMPORT partials/topic/deleted-message.tpl -->
|
|
52
57
|
{{{ end }}}
|