nodebb-theme-harmony 1.0.0-beta.7 → 1.0.0-beta.71

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.
Files changed (137) hide show
  1. package/README.md +12 -1
  2. package/languages/en-GB/harmony.json +5 -1
  3. package/library.js +21 -7
  4. package/package.json +1 -1
  5. package/public/harmony.js +148 -9
  6. package/public/settings.js +1 -0
  7. package/screenshots/categories.png +0 -0
  8. package/screenshots/recent.png +0 -0
  9. package/screenshots/topic.png +0 -0
  10. package/scss/account.scss +1 -1
  11. package/scss/chats.scss +53 -25
  12. package/scss/common.scss +60 -8
  13. package/scss/flags.scss +5 -0
  14. package/scss/harmony.scss +3 -0
  15. package/scss/mixins.scss +7 -3
  16. package/scss/modals.scss +6 -1
  17. package/scss/modules/bottom-sheet.scss +1 -1
  18. package/scss/modules/composer.scss +0 -4
  19. package/scss/modules/cover.scss +1 -11
  20. package/scss/modules/filters.scss +8 -0
  21. package/scss/modules/paginator.scss +24 -0
  22. package/scss/modules/topic-navigator.scss +14 -42
  23. package/scss/modules/topics-list.scss +6 -0
  24. package/scss/overrides.scss +4 -1
  25. package/scss/search.scss +0 -0
  26. package/scss/sidebar.scss +20 -10
  27. package/scss/topic.scss +26 -13
  28. package/templates/account/blocks.tpl +35 -41
  29. package/templates/account/categories.tpl +26 -29
  30. package/templates/account/consent.tpl +66 -10
  31. package/templates/account/edit/password.tpl +25 -30
  32. package/templates/account/edit/username.tpl +21 -26
  33. package/templates/account/edit.tpl +105 -116
  34. package/templates/account/followers.tpl +12 -19
  35. package/templates/account/following.tpl +12 -18
  36. package/templates/account/groups.tpl +12 -17
  37. package/templates/account/info.tpl +178 -206
  38. package/templates/account/posts.tpl +31 -36
  39. package/templates/account/profile.tpl +66 -73
  40. package/templates/account/sessions.tpl +8 -30
  41. package/templates/account/settings.tpl +193 -198
  42. package/templates/account/theme.tpl +35 -26
  43. package/templates/account/topics.tpl +33 -38
  44. package/templates/account/uploads.tpl +33 -40
  45. package/templates/admin/plugins/harmony.tpl +17 -3
  46. package/templates/categories.tpl +1 -1
  47. package/templates/category.tpl +12 -13
  48. package/templates/chats.tpl +7 -8
  49. package/templates/flags/detail.tpl +160 -193
  50. package/templates/flags/list.tpl +4 -70
  51. package/templates/footer.tpl +2 -2
  52. package/templates/groups/details.tpl +21 -18
  53. package/templates/groups/list.tpl +1 -1
  54. package/templates/groups/members.tpl +0 -2
  55. package/templates/header.tpl +1 -1
  56. package/templates/login.tpl +2 -2
  57. package/templates/notifications.tpl +1 -1
  58. package/templates/partials/account/category-item.tpl +4 -4
  59. package/templates/partials/account/footer.tpl +3 -0
  60. package/templates/partials/account/header.tpl +78 -81
  61. package/templates/partials/account/session-list.tpl +18 -0
  62. package/templates/partials/account/sidebar-left.tpl +6 -0
  63. package/templates/partials/breadcrumbs.tpl +6 -6
  64. package/templates/partials/categories/item.tpl +20 -19
  65. package/templates/partials/categories/lastpost.tpl +2 -2
  66. package/templates/partials/{category-filter-content.tpl → category/filter-dropdown-content.tpl} +8 -6
  67. package/templates/partials/{category-selector-content.tpl → category/selector-dropdown-content.tpl} +3 -3
  68. package/templates/partials/category/subcategory.tpl +1 -1
  69. package/templates/partials/category/tags.tpl +0 -2
  70. package/templates/partials/category/watch.tpl +28 -4
  71. package/templates/partials/chats/message-window.tpl +10 -7
  72. package/templates/partials/chats/message.tpl +4 -6
  73. package/templates/partials/chats/recent_room.tpl +41 -32
  74. package/templates/partials/cookie-consent.tpl +5 -5
  75. package/templates/partials/flags/filters.tpl +142 -85
  76. package/templates/partials/flags/results.tpl +38 -0
  77. package/templates/partials/groups/admin.tpl +4 -4
  78. package/templates/partials/groups/badge.tpl +1 -1
  79. package/templates/partials/groups/memberlist.tpl +1 -1
  80. package/templates/partials/groups/sidebar-left.tpl +1 -1
  81. package/templates/partials/header/brand.tpl +1 -1
  82. package/templates/partials/mobile-footer.tpl +69 -64
  83. package/templates/partials/notifications_list.tpl +1 -1
  84. package/templates/partials/paginator.tpl +11 -9
  85. package/templates/partials/post_bar.tpl +26 -24
  86. package/templates/partials/posts_list_item.tpl +5 -5
  87. package/templates/partials/quick-search-results.tpl +3 -3
  88. package/templates/partials/search-filters.tpl +184 -0
  89. package/templates/partials/search-results.tpl +28 -32
  90. package/templates/partials/sidebar/chats.tpl +22 -33
  91. package/templates/partials/sidebar/drafts.tpl +42 -34
  92. package/templates/partials/sidebar/logged-in-menu.tpl +5 -5
  93. package/templates/partials/sidebar/logged-out-menu.tpl +1 -1
  94. package/templates/partials/sidebar/notifications.tpl +29 -8
  95. package/templates/partials/sidebar/search.tpl +1 -1
  96. package/templates/partials/sidebar/user-menu.tpl +6 -6
  97. package/templates/partials/sidebar-left.tpl +13 -10
  98. package/templates/partials/sidebar-right.tpl +1 -3
  99. package/templates/partials/skin-switcher.tpl +2 -2
  100. package/templates/partials/tags/filter-dropdown-content.tpl +31 -0
  101. package/templates/partials/tags_list.tpl +4 -4
  102. package/templates/partials/topic/browsing-users.tpl +0 -2
  103. package/templates/partials/topic/event.tpl +1 -1
  104. package/templates/partials/topic/navigation-post.tpl +5 -9
  105. package/templates/partials/topic/navigator-mobile.tpl +62 -0
  106. package/templates/partials/topic/navigator.tpl +21 -17
  107. package/templates/partials/topic/post-editor.tpl +0 -2
  108. package/templates/partials/topic/post-menu-list.tpl +36 -38
  109. package/templates/partials/topic/post-menu.tpl +15 -10
  110. package/templates/partials/topic/post.tpl +35 -17
  111. package/templates/partials/topic/quickreply.tpl +6 -6
  112. package/templates/partials/topic/reply-button.tpl +1 -1
  113. package/templates/partials/topic/topic-menu-list.tpl +16 -18
  114. package/templates/partials/topic/watch.tpl +28 -4
  115. package/templates/partials/topic-list-bar.tpl +50 -46
  116. package/templates/partials/topics_list.tpl +40 -38
  117. package/templates/partials/userFilter-placeholders.tpl +5 -0
  118. package/templates/partials/users/filter-dropdown-content.tpl +20 -0
  119. package/templates/partials/users/item.tpl +24 -26
  120. package/templates/partials/users_list.tpl +1 -1
  121. package/templates/popular.tpl +3 -1
  122. package/templates/post-queue.tpl +120 -0
  123. package/templates/recent.tpl +3 -2
  124. package/templates/register.tpl +2 -2
  125. package/templates/search.tpl +39 -177
  126. package/templates/tags.tpl +3 -3
  127. package/templates/top.tpl +3 -1
  128. package/templates/topic.tpl +74 -68
  129. package/templates/unread.tpl +3 -1
  130. package/templates/users.tpl +2 -2
  131. package/templates/modules/usercard.tpl +0 -39
  132. package/templates/partials/acceptTos.tpl +0 -11
  133. package/templates/partials/category-filter-right.tpl +0 -5
  134. package/templates/partials/category-filter.tpl +0 -3
  135. package/templates/partials/category-selector-right.tpl +0 -5
  136. package/templates/partials/category-selector.tpl +0 -3
  137. package/templates/partials/slideout-menu.tpl +0 -6
@@ -1,132 +1,121 @@
1
- <div class="account">
2
- <!-- IMPORT partials/account/header.tpl -->
1
+ <!-- IMPORT partials/account/header.tpl -->
3
2
 
4
- <div class="d-flex flex-column flex-md-row">
5
- <!-- IMPORT partials/account/sidebar-left.tpl -->
6
- <div class="flex-1 ps-md-2 ps-lg-5" style="min-width: 0;">
7
- <div class="d-flex justify-content-between mb-3">
8
- <h3 class="fw-semibold fs-5">{{{ if isSelf }}}[[user:edit-profile]]{{{ else }}}[[pages:account/edit, {username}]]{{{ end }}}</h3>
9
- <button id="submitBtn" class="btn btn-primary">[[global:save_changes]]</button>
3
+ <div class="d-flex justify-content-between mb-3 align-items-center">
4
+ <h3 class="fw-semibold fs-5 mb-0">{{{ if isSelf }}}[[user:edit-profile]]{{{ else }}}[[pages:account/edit, {username}]]{{{ end }}}</h3>
5
+ <button id="submitBtn" class="btn btn-primary">[[global:save_changes]]</button>
6
+ </div>
7
+ <div class="row">
8
+ <div class="col-xl-6 col-12">
9
+ <form role="form" component="profile/edit/form">
10
+ <div class="mb-2">
11
+ <label class="form-label fw-bold" for="fullname">[[user:fullname]]</label>
12
+ <input class="form-control" type="text" id="fullname" name="fullname" placeholder="[[user:fullname]]" value="{fullname}">
10
13
  </div>
11
- <div class="row">
12
- <div class="col-xl-6 col-12">
13
- <form role="form" component="profile/edit/form">
14
- <div class="mb-2">
15
- <label class="form-label fw-bold" for="fullname">[[user:fullname]]</label>
16
- <input class="form-control" type="text" id="fullname" name="fullname" placeholder="[[user:fullname]]" value="{fullname}">
17
- </div>
18
- <!-- IF allowWebsite -->
19
- <div class="mb-2">
20
- <label class="form-label fw-bold" for="website">[[user:website]]</label>
21
- <input class="form-control" type="text" id="website" name="website" placeholder="http://..." value="{website}">
22
- </div>
23
- <!-- ENDIF allowWebsite -->
24
-
25
- <div class="mb-2">
26
- <label class="form-label fw-bold" for="location">[[user:location]]</label>
27
- <input class="form-control" type="text" id="location" name="location" placeholder="[[user:location]]" value="{location}">
28
- </div>
29
-
30
- <div class="mb-2">
31
- <label class="form-label fw-bold" for="birthday">[[user:birthday]]</label>
32
- <input class="form-control" type="date" id="birthday" name="birthday" value="{birthday}" placeholder="mm/dd/yyyy">
33
- </div>
14
+ {{{ if allowWebsite }}}
15
+ <div class="mb-2">
16
+ <label class="form-label fw-bold" for="website">[[user:website]]</label>
17
+ <input class="form-control" type="text" id="website" name="website" placeholder="http://..." value="{website}">
18
+ </div>
19
+ {{{ end }}}
34
20
 
35
- <div class="mb-2">
36
- <label class="form-label fw-bold" for="groupTitle">[[user:grouptitle]]</label>
21
+ <div class="mb-2">
22
+ <label class="form-label fw-bold" for="location">[[user:location]]</label>
23
+ <input class="form-control" type="text" id="location" name="location" placeholder="[[user:location]]" value="{location}">
24
+ </div>
37
25
 
38
- <select class="form-select mb-1" id="groupTitle" name="groupTitle" <!-- IF allowMultipleBadges --> size="{groupSelectSize}" multiple<!-- ENDIF allowMultipleBadges -->>
39
- <option value="">[[user:no-group-title]]</option>
40
- {{{each groups}}}
41
- <!-- IF groups.userTitleEnabled -->
42
- <option value="{groups.displayName}" <!-- IF groups.selected -->selected<!-- ENDIF groups.selected -->>{groups.userTitle}</option>
43
- <!-- ENDIF groups.userTitleEnabled -->
44
- {{{end}}}
45
- </select>
46
- <!-- IF allowMultipleBadges -->
47
- <div class="d-none d-md-block">
48
- <span class="form-text">[[user:group-order-help]]</span>
49
- <i role="button" component="group/order/up" class="fa fa-chevron-up"></i> <i role="button" component="group/order/down" class="fa fa-chevron-down"></i>
50
- </div>
51
- <!-- ENDIF -->
52
- </div>
26
+ <div class="mb-2">
27
+ <label class="form-label fw-bold" for="birthday">[[user:birthday]]</label>
28
+ <input class="form-control" type="date" id="birthday" name="birthday" value="{birthday}" placeholder="mm/dd/yyyy">
29
+ </div>
53
30
 
54
- <!-- IF allowAboutMe -->
55
- <div class="mb-2">
56
- <label class="form-label fw-bold" for="aboutme">[[user:aboutme]]</label> <small><label id="aboutMeCharCountLeft"></label></small>
57
- <textarea class="form-control" id="aboutme" name="aboutme" rows="5">{aboutme}</textarea>
58
- </div>
59
- <!-- ENDIF allowAboutMe -->
31
+ <div class="mb-2">
32
+ <label class="form-label fw-bold" for="groupTitle">[[user:grouptitle]]</label>
60
33
 
61
- <!-- IF allowSignature -->
62
- <!-- IF !disableSignatures -->
63
- <div class="mb-2">
64
- <label class="form-label fw-bold" for="signature">[[user:signature]]</label> <small><label id="signatureCharCountLeft"></label></small>
65
- <textarea class="form-control" id="signature" name="signature" rows="5">{signature}</textarea>
66
- </div>
67
- <!-- ENDIF !disableSignatures -->
68
- <!-- ENDIF allowSignature -->
69
- </form>
70
- <hr class="visible-xs visible-sm"/>
34
+ <select class="form-select mb-1" id="groupTitle" name="groupTitle" {{{ if allowMultipleBadges }}} size="{groupSelectSize}" multiple{{{ end }}}>
35
+ <option value="">[[user:no-group-title]]</option>
36
+ {{{ each groups }}}
37
+ {{{ if ./userTitleEnabled }}}
38
+ <option value="{groups.displayName}" {{{ if ./selected }}}selected{{{ end }}}>{./userTitle}</option>
39
+ {{{ end }}}
40
+ {{{ end }}}
41
+ </select>
42
+ {{{ if allowMultipleBadges }}}
43
+ <div class="d-none d-md-block">
44
+ <span class="form-text">[[user:group-order-help]]</span>
45
+ <i role="button" component="group/order/up" class="fa fa-chevron-up"></i> <i role="button" component="group/order/down" class="fa fa-chevron-down"></i>
71
46
  </div>
47
+ {{{ end }}}
48
+ </div>
49
+
50
+ {{{ if allowAboutMe }}}
51
+ <div class="mb-2">
52
+ <label class="form-label fw-bold" for="aboutme">[[user:aboutme]]</label> <small><label id="aboutMeCharCountLeft"></label></small>
53
+ <textarea class="form-control" id="aboutme" name="aboutme" rows="5">{aboutme}</textarea>
54
+ </div>
55
+ {{{ end }}}
72
56
 
73
- <div class="col-xl-6 col-12">
74
- <div class="text-center">
75
- <ul class="list-group mb-3 text-sm text-nowrap">
76
- <!-- IF allowProfilePicture -->
77
- <a id="changePictureBtn" href="#" class="list-group-item px-1 text-decoration-none">[[user:change_picture]]</a>
78
- <!-- ENDIF allowProfilePicture -->
79
- <!-- IF !username:disableEdit -->
80
- <a href="{config.relative_path}/user/{userslug}/edit/username" class="list-group-item px-1 text-decoration-none">[[user:change_username]]</a>
81
- <!-- ENDIF !username:disableEdit -->
82
- <!-- IF !email:disableEdit -->
83
- <a href="{config.relative_path}/user/{userslug}/edit/email" class="list-group-item px-1 text-decoration-none">[[user:change_email]]</a>
84
- <!-- ENDIF !email:disableEdit -->
85
- <!-- IF canChangePassword -->
86
- <a href="{config.relative_path}/user/{userslug}/edit/password" class="list-group-item px-1 text-decoration-none">[[user:change_password]]</a>
87
- <!-- ENDIF canChangePassword -->
88
- {{{each editButtons}}}
89
- <a href="{config.relative_path}{editButtons.link}" class="list-group-item px-1 text-decoration-none">{editButtons.text}</a>
90
- {{{end}}}
91
- </ul>
57
+ {{{ if (allowSignature && !disableSignatures) }}}
58
+ <div class="mb-2">
59
+ <label class="form-label fw-bold" for="signature">[[user:signature]]</label> <small><label id="signatureCharCountLeft"></label></small>
60
+ <textarea class="form-control" id="signature" name="signature" rows="5">{signature}</textarea>
61
+ </div>
62
+ {{{ end }}}
63
+ </form>
64
+ <hr class="visible-xs visible-sm"/>
65
+ </div>
92
66
 
93
- <!-- IF config.requireEmailConfirmation -->
94
- <!-- IF email -->
95
- <!-- IF isSelf -->
96
- <a id="confirm-email" href="#" class="btn btn-warning <!-- IF email:confirmed -->hide<!-- ENDIF email:confirmed -->">[[user:confirm_email]]</a><br/><br/>
97
- <!-- ENDIF isSelf -->
98
- <!-- ENDIF email -->
99
- <!-- ENDIF config.requireEmailConfirmation -->
100
- </div>
67
+ <div class="col-xl-6 col-12">
68
+ <div class="text-center">
69
+ <ul class="list-group mb-3 text-sm text-nowrap">
70
+ {{{ if allowProfilePicture }}}
71
+ <a component="profile/change/picture" href="#" class="list-group-item px-1 text-decoration-none">[[user:change_picture]]</a>
72
+ {{{ end }}}
73
+ {{{ if !username:disableEdit }}}
74
+ <a href="{config.relative_path}/user/{userslug}/edit/username" class="list-group-item px-1 text-decoration-none">[[user:change_username]]</a>
75
+ {{{ end }}}
76
+ {{{ if !email:disableEdit }}}
77
+ <a href="{config.relative_path}/user/{userslug}/edit/email" class="list-group-item px-1 text-decoration-none">[[user:change_email]]</a>
78
+ {{{ end }}}
79
+ {{{ if canChangePassword }}}
80
+ <a href="{config.relative_path}/user/{userslug}/edit/password" class="list-group-item px-1 text-decoration-none">[[user:change_password]]</a>
81
+ {{{ end }}}
82
+ {{{ each editButtons }}}
83
+ <a href="{config.relative_path}{./link}" class="list-group-item px-1 text-decoration-none">{./text}</a>
84
+ {{{ end }}}
85
+ </ul>
101
86
 
102
- {{{ if sso.length }}}
103
- <label class="form-label text-sm fw-semibold">[[user:sso.title]]</label>
104
- <div class="list-group">
105
- {{{each sso}}}
106
- <div class="list-group-item d-flex justify-content-between">
107
- <a class="text-sm text-reset text-decoration-none" data-component="{../component}" href="{../url}" target="<!-- IF ../associated -->_blank<!-- ELSE -->_top<!-- ENDIF ../associated -->">
108
- <!-- IF ../icon --><i class="fa {../icon}"></i><!-- ENDIF ../icon -->
109
- <!-- IF ../associated -->[[user:sso.associated]]<!-- ELSE -->[[user:sso.not-associated]]<!-- ENDIF ../associated -->
110
- {../name}
111
- </a>
112
- <!-- IF ../deauthUrl -->
113
- <a data-component="{../component}" class="btn btn-outline-secondary btn-sm" href="{../deauthUrl}">[[user:sso.dissociate]]</a>
114
- <!-- END -->
115
- </div>
116
- {{{end}}}
117
- </div>
118
- {{{ end }}}
87
+ {{{ if config.requireEmailConfirmation }}}
88
+ {{{ if (email && isSelf) }}}
89
+ <a id="confirm-email" href="#" class="btn btn-warning {{{ if email:confirmed }}}hide{{{ end }}}">[[user:confirm_email]]</a><br/><br/>
90
+ {{{ end }}}
91
+ {{{ end }}}
92
+ </div>
119
93
 
120
- <hr/>
121
- {{{ if (allowAccountDelete && isSelf) }}}
122
- <div class="d-flex justify-content-end">
123
- <button id="deleteAccountBtn" class="btn btn-danger">[[user:delete_account]]</button>
124
- </div>
125
- {{{ end }}}
126
- </div>
94
+ {{{ if sso.length }}}
95
+ <label class="form-label text-sm fw-semibold">[[user:sso.title]]</label>
96
+ <div class="list-group">
97
+ {{{ each sso }}}
98
+ <div class="list-group-item d-flex justify-content-between">
99
+ <a class="text-sm text-reset text-decoration-none" data-component="{./component}" href="{./url}" target="{{{ if ./associated }}}_blank{{{ else }}}_top{{{ end }}}">
100
+ {{{ if ./icon }}}<i class="fa {./icon}"></i>{{{ end }}}
101
+ {{{ if ./associated }}}[[user:sso.associated]]{{{ else }}}[[user:sso.not-associated]]{{{ end }}}
102
+ {./name}
103
+ </a>
104
+ {{{ if ./deauthUrl }}}
105
+ <a data-component="{./component}" class="btn btn-outline-secondary btn-sm" href="{./deauthUrl}">[[user:sso.dissociate]]</a>
106
+ {{{ end }}}
127
107
  </div>
108
+ {{{ end }}}
128
109
  </div>
110
+ {{{ end }}}
111
+
112
+ <hr/>
113
+ {{{ if (allowAccountDelete && isSelf) }}}
114
+ <div class="d-flex justify-content-end">
115
+ <button id="deleteAccountBtn" class="btn btn-danger">[[user:delete_account]]</button>
116
+ </div>
117
+ {{{ end }}}
129
118
  </div>
130
119
  </div>
131
120
 
132
-
121
+ <!-- IMPORT partials/account/footer.tpl -->
@@ -1,22 +1,15 @@
1
- <div class="account">
2
- <!-- IMPORT partials/account/header.tpl -->
1
+ <!-- IMPORT partials/account/header.tpl -->
2
+ <h3 class="fw-semibold fs-5">[[pages:{template.name}, {username}]]</h3>
3
3
 
4
- <div class="d-flex flex-column flex-md-row">
5
- <!-- IMPORT partials/account/sidebar-left.tpl -->
6
- <div class="flex-1 ps-md-2 ps-lg-5" style="min-width: 0;">
7
- <h3 class="fw-semibold fs-5">[[pages:{template.name}, {username}]]</h3>
4
+ {{{ if !users.length }}}
5
+ <div class="alert alert-warning text-center">[[user:has_no_follower]]</div>
6
+ {{{ end }}}
8
7
 
9
- {{{ if !users.length }}}
10
- <div class="alert alert-warning text-center">[[user:has_no_follower]]</div>
11
- {{{ end }}}
8
+ <div class="row row-cols-2 row-cols-lg-3 row-cols-xl-4 g-2">
9
+ {{{ each users }}}
10
+ <!-- IMPORT partials/users/item.tpl -->
11
+ {{{end}}}
12
+ </div>
12
13
 
13
- <div class="row row-cols-2 row-cols-lg-3 row-cols-xl-4 g-2">
14
- {{{ each users }}}
15
- <!-- IMPORT partials/users/item.tpl -->
16
- {{{end}}}
17
- </div>
18
-
19
- <!-- IMPORT partials/paginator.tpl -->
20
- </div>
21
- </div>
22
- </div>
14
+ <!-- IMPORT partials/paginator.tpl -->
15
+ <!-- IMPORT partials/account/footer.tpl -->
@@ -1,22 +1,16 @@
1
- <div class="account">
2
- <!-- IMPORT partials/account/header.tpl -->
1
+ <!-- IMPORT partials/account/header.tpl -->
3
2
 
4
- <div class="d-flex flex-column flex-md-row">
5
- <!-- IMPORT partials/account/sidebar-left.tpl -->
6
- <div class="flex-1 ps-md-2 ps-lg-5" style="min-width: 0;">
7
- <h3 class="fw-semibold fs-5">[[pages:{template.name}, {username}]]</h3>
3
+ <h3 class="fw-semibold fs-5">[[pages:{template.name}, {username}]]</h3>
8
4
 
9
- {{{ if !users.length }}}
10
- <div class="alert alert-warning text-center">[[user:follows_no_one]]</div>
11
- {{{ end }}}
5
+ {{{ if !users.length }}}
6
+ <div class="alert alert-warning text-center">[[user:follows_no_one]]</div>
7
+ {{{ end }}}
12
8
 
13
- <div class="row row-cols-2 row-cols-lg-3 row-cols-xl-4 g-2">
14
- {{{ each users }}}
15
- <!-- IMPORT partials/users/item.tpl -->
16
- {{{end}}}
17
- </div>
9
+ <div class="row row-cols-2 row-cols-lg-3 row-cols-xl-4 g-2">
10
+ {{{ each users }}}
11
+ <!-- IMPORT partials/users/item.tpl -->
12
+ {{{end}}}
13
+ </div>
18
14
 
19
- <!-- IMPORT partials/paginator.tpl -->
20
- </div>
21
- </div>
22
- </div>
15
+ <!-- IMPORT partials/paginator.tpl -->
16
+ <!-- IMPORT partials/account/footer.tpl -->
@@ -1,20 +1,15 @@
1
- <div class="account">
2
- <!-- IMPORT partials/account/header.tpl -->
1
+ <!-- IMPORT partials/account/header.tpl -->
3
2
 
4
- <div class="d-flex flex-column flex-md-row">
5
- <!-- IMPORT partials/account/sidebar-left.tpl -->
6
- <div class="flex-1 ps-md-2 ps-lg-5" style="min-width: 0;">
7
- <h3 class="fw-semibold fs-5">[[pages:{template.name}, {username}]]</h3>
3
+ <h3 class="fw-semibold fs-5">[[pages:{template.name}, {username}]]</h3>
8
4
 
9
- <div class="groups">
10
- <div component="groups/container" id="groups-list" class="row">
11
- {{{ if !groups.length }}}
12
- <div class="alert alert-warning text-center">[[groups:no_groups_found]]</div>
13
- {{{ else }}}
14
- <!-- IMPORT partials/groups/list.tpl -->
15
- {{{ end }}}
16
- </div>
17
- </div>
18
- </div>
5
+ <div class="groups">
6
+ <div component="groups/container" id="groups-list" class="row">
7
+ {{{ if !groups.length }}}
8
+ <div class="alert alert-warning text-center">[[groups:no_groups_found]]</div>
9
+ {{{ else }}}
10
+ <!-- IMPORT partials/groups/list.tpl -->
11
+ {{{ end }}}
19
12
  </div>
20
- </div>
13
+ </div>
14
+
15
+ <!-- IMPORT partials/account/footer.tpl -->