nodebb-theme-persona 14.2.1 → 14.2.2
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/partials/categories/link.tpl +10 -10
- package/templates/topic.tpl +4 -0
- package/package-lock.json +0 -2802
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
<!-- IF ../isSection -->
|
|
2
|
-
{../name}
|
|
3
|
-
<!-- ELSE -->
|
|
4
|
-
<!-- IF ../link -->
|
|
5
|
-
<a href="{../link}" itemprop="url">
|
|
6
|
-
<!-- ELSE -->
|
|
7
|
-
<a href="{config.relative_path}/category/{../slug}" itemprop="url">
|
|
8
|
-
<!-- ENDIF ../link -->
|
|
9
|
-
{../name}
|
|
10
|
-
</a>
|
|
1
|
+
<!-- IF ../isSection -->
|
|
2
|
+
{../name}
|
|
3
|
+
<!-- ELSE -->
|
|
4
|
+
<!-- IF ../link -->
|
|
5
|
+
<a href="{../link}" itemprop="url">
|
|
6
|
+
<!-- ELSE -->
|
|
7
|
+
<a href="{config.relative_path}/category/{../slug}" itemprop="url">
|
|
8
|
+
<!-- ENDIF ../link -->
|
|
9
|
+
{../name}
|
|
10
|
+
</a>
|
|
11
11
|
<!-- ENDIF ../isSection -->
|
package/templates/topic.tpl
CHANGED
|
@@ -101,6 +101,10 @@
|
|
|
101
101
|
<!-- IMPORT partials/topic/quickreply.tpl -->
|
|
102
102
|
{{{ end }}}
|
|
103
103
|
|
|
104
|
+
{{{ if !config.loggedIn }}}
|
|
105
|
+
<!-- IMPORT partials/topic/guest-cta.tpl -->
|
|
106
|
+
{{{ end }}}
|
|
107
|
+
|
|
104
108
|
{{{ if config.usePagination }}}
|
|
105
109
|
<!-- IMPORT partials/paginator.tpl -->
|
|
106
110
|
{{{ end }}}
|