nodebb-theme-persona 11.3.38 → 11.4.1
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/.eslintrc +2 -2
- package/README.md +14 -14
- package/languages/de/persona.json +3 -3
- package/languages/en-GB/persona.json +9 -2
- package/languages/en-US/persona.json +2 -2
- package/languages/fr/persona.json +3 -3
- package/languages/pl/persona.json +3 -3
- package/languages/pt-PT/persona.json +2 -2
- package/languages/tr/persona.json +4 -4
- package/languages/zh-CN/persona.json +4 -4
- package/less/account.less +7 -1
- package/less/bootstrap/.csscomb.json +297 -297
- package/less/bootstrap/.csslintrc +19 -19
- package/less/bootstrap/alerts.less +73 -73
- package/less/bootstrap/badges.less +66 -66
- package/less/bootstrap/bootstrap.less +50 -50
- package/less/bootstrap/breadcrumbs.less +26 -26
- package/less/bootstrap/button-groups.less +243 -243
- package/less/bootstrap/buttons.less +160 -160
- package/less/bootstrap/carousel.less +269 -269
- package/less/bootstrap/close.less +34 -34
- package/less/bootstrap/code.less +69 -69
- package/less/bootstrap/component-animations.less +33 -33
- package/less/bootstrap/forms.less +574 -574
- package/less/bootstrap/glyphicons.less +305 -305
- package/less/bootstrap/grid.less +84 -84
- package/less/bootstrap/input-groups.less +166 -166
- package/less/bootstrap/jumbotron.less +50 -50
- package/less/bootstrap/labels.less +64 -64
- package/less/bootstrap/list-group.less +124 -124
- package/less/bootstrap/media.less +61 -61
- package/less/bootstrap/mixins/alerts.less +14 -14
- package/less/bootstrap/mixins/background-variant.less +8 -8
- package/less/bootstrap/mixins/border-radius.less +18 -18
- package/less/bootstrap/mixins/buttons.less +52 -52
- package/less/bootstrap/mixins/center-block.less +7 -7
- package/less/bootstrap/mixins/clearfix.less +22 -22
- package/less/bootstrap/mixins/forms.less +85 -85
- package/less/bootstrap/mixins/gradients.less +59 -59
- package/less/bootstrap/mixins/grid-framework.less +91 -91
- package/less/bootstrap/mixins/grid.less +122 -122
- package/less/bootstrap/mixins/hide-text.less +21 -21
- package/less/bootstrap/mixins/image.less +33 -33
- package/less/bootstrap/mixins/labels.less +12 -12
- package/less/bootstrap/mixins/list-group.less +29 -29
- package/less/bootstrap/mixins/nav-divider.less +10 -10
- package/less/bootstrap/mixins/nav-vertical-align.less +9 -9
- package/less/bootstrap/mixins/opacity.less +8 -8
- package/less/bootstrap/mixins/pagination.less +23 -23
- package/less/bootstrap/mixins/panels.less +24 -24
- package/less/bootstrap/mixins/progress-bar.less +10 -10
- package/less/bootstrap/mixins/reset-filter.less +8 -8
- package/less/bootstrap/mixins/resize.less +6 -6
- package/less/bootstrap/mixins/responsive-visibility.less +15 -15
- package/less/bootstrap/mixins/size.less +10 -10
- package/less/bootstrap/mixins/tab-focus.less +9 -9
- package/less/bootstrap/mixins/table-row.less +28 -28
- package/less/bootstrap/mixins/text-emphasis.less +8 -8
- package/less/bootstrap/mixins/text-overflow.less +8 -8
- package/less/bootstrap/mixins/vendor-prefixes.less +227 -227
- package/less/bootstrap/mixins.less +39 -39
- package/less/bootstrap/modals.less +150 -150
- package/less/bootstrap/navbar.less +660 -660
- package/less/bootstrap/navs.less +242 -242
- package/less/bootstrap/normalize.less +427 -427
- package/less/bootstrap/pager.less +54 -54
- package/less/bootstrap/pagination.less +88 -88
- package/less/bootstrap/panels.less +265 -265
- package/less/bootstrap/popovers.less +135 -135
- package/less/bootstrap/print.less +107 -107
- package/less/bootstrap/progress-bars.less +87 -87
- package/less/bootstrap/responsive-embed.less +35 -35
- package/less/bootstrap/responsive-utilities.less +194 -194
- package/less/bootstrap/scaffolding.less +161 -161
- package/less/bootstrap/tables.less +234 -234
- package/less/bootstrap/theme.less +273 -273
- package/less/bootstrap/thumbnails.less +36 -36
- package/less/bootstrap/tooltip.less +102 -102
- package/less/bootstrap/type.less +302 -302
- package/less/bootstrap/utilities.less +55 -55
- package/less/bootstrap/variables.less +861 -861
- package/less/bootstrap/wells.less +29 -29
- package/less/bootstrap-flipped.css +1550 -1550
- package/less/categories.less +235 -235
- package/less/flags.less +42 -42
- package/less/footer.less +17 -17
- package/less/ip-blacklist.less +6 -6
- package/less/keyframes.less +152 -152
- package/less/modules/composer-default.less +16 -16
- package/less/modules/cookie-consent.less +12 -12
- package/less/modules/fab.less +32 -32
- package/less/modules/morph.less +268 -268
- package/less/modules/necro-post.less +8 -8
- package/less/modules/nprogress.less +80 -80
- package/less/modules/usercard.less +64 -64
- package/less/noscript.less +82 -82
- package/less/notifications.less +37 -37
- package/less/outgoing.less +8 -8
- package/less/persona.less +47 -47
- package/less/post-queue.less +19 -19
- package/less/register.less +75 -75
- package/less/rtl.less +132 -132
- package/less/tags.less +36 -36
- package/less/users.less +72 -72
- package/less/variables.less +6 -6
- package/lib/controllers.js +22 -0
- package/library.js +29 -3
- package/package.json +1 -1
- package/plugin.json +2 -0
- package/public/.eslintrc +2 -2
- package/public/modules/autohidingnavbar.js +220 -220
- package/public/persona.js +9 -29
- package/public/settings.js +53 -0
- package/templates/account/blocks.tpl +34 -34
- package/templates/account/categories.tpl +28 -28
- package/templates/account/consent.tpl +68 -68
- package/templates/account/edit/email.tpl +30 -30
- package/templates/account/edit/password.tpl +31 -31
- package/templates/account/edit/username.tpl +29 -29
- package/templates/account/followers.tpl +16 -16
- package/templates/account/following.tpl +16 -16
- package/templates/account/groups.tpl +16 -16
- package/templates/account/info.tpl +187 -187
- package/templates/account/posts.tpl +18 -18
- package/templates/account/sessions.tpl +31 -31
- package/templates/account/theme.tpl +27 -0
- package/templates/account/topics.tpl +30 -30
- package/templates/account/uploads.tpl +42 -42
- package/templates/admin/plugins/persona.tpl +28 -28
- package/templates/alert.tpl +15 -15
- package/templates/categories.tpl +31 -31
- package/templates/category.tpl +62 -62
- package/templates/chats.tpl +16 -16
- package/templates/flags/list.tpl +71 -71
- package/templates/footer.tpl +18 -18
- package/templates/groups/details.tpl +272 -272
- package/templates/groups/list.tpl +46 -46
- package/templates/groups/members.tpl +8 -8
- package/templates/ip-blacklist.tpl +55 -55
- package/templates/modules/taskbar.tpl +2 -2
- package/templates/modules/usercard.tpl +36 -36
- package/templates/notifications.tpl +64 -64
- package/templates/partials/acceptTos.tpl +8 -8
- package/templates/partials/account/category-item.tpl +22 -22
- package/templates/partials/account/header.tpl +46 -46
- package/templates/partials/breadcrumbs.tpl +18 -18
- package/templates/partials/buttons/newTopic.tpl +15 -15
- package/templates/partials/categories/item.tpl +46 -46
- package/templates/partials/categories/lastpost.tpl +26 -26
- package/templates/partials/categories/link.tpl +10 -10
- package/templates/partials/category/sort.tpl +14 -14
- package/templates/partials/category/subcategory.tpl +17 -17
- package/templates/partials/category/tags.tpl +4 -4
- package/templates/partials/category/tools.tpl +80 -80
- package/templates/partials/category/watch.tpl +22 -22
- package/templates/partials/category-filter-content.tpl +16 -16
- package/templates/partials/category-filter-right.tpl +2 -2
- package/templates/partials/category-filter.tpl +2 -2
- package/templates/partials/category-selector-right.tpl +2 -2
- package/templates/partials/category-selector.tpl +2 -2
- package/templates/partials/change_owner_modal.tpl +22 -22
- package/templates/partials/chats/dropdown.tpl +33 -33
- package/templates/partials/chats/messages.tpl +6 -6
- package/templates/partials/chats/recent_room.tpl +24 -24
- package/templates/partials/chats-menu.tpl +40 -40
- package/templates/partials/cookie-consent.tpl +4 -4
- package/templates/partials/delete_posts_modal.tpl +18 -18
- package/templates/partials/fork_thread_modal.tpl +21 -21
- package/templates/partials/groups/list.tpl +20 -20
- package/templates/partials/groups/memberlist.tpl +39 -39
- package/templates/partials/merge_topics_modal.tpl +57 -57
- package/templates/partials/modals/flag_modal.tpl +44 -44
- package/templates/partials/modals/manage_room.tpl +10 -10
- package/templates/partials/modals/manage_room_users.tpl +6 -6
- package/templates/partials/modals/post_history.tpl +36 -36
- package/templates/partials/modals/rename_room.tpl +3 -3
- package/templates/partials/modals/votes_modal.tpl +10 -10
- package/templates/partials/move_thread_modal.tpl +16 -16
- package/templates/partials/paginator.tpl +44 -44
- package/templates/partials/post_bar.tpl +20 -20
- package/templates/partials/posts_list.tpl +7 -7
- package/templates/partials/quick-search-results.tpl +30 -30
- package/templates/partials/slideout-menu.tpl +4 -4
- package/templates/partials/tags_list.tpl +4 -4
- package/templates/partials/thread_tools.tpl +7 -7
- package/templates/partials/topic/badge.tpl +4 -4
- package/templates/partials/topic/deleted-message.tpl +10 -10
- package/templates/partials/topic/navigation-post.tpl +11 -11
- package/templates/partials/topic/navigator.tpl +8 -1
- package/templates/partials/topic/necro-post.tpl +2 -2
- package/templates/partials/topic/post-menu.tpl +4 -4
- package/templates/partials/topic/post.tpl +104 -104
- package/templates/partials/topic/quickreply.tpl +25 -25
- package/templates/partials/topic/reply-button.tpl +26 -26
- package/templates/partials/topic/selection-tooltip.tpl +2 -2
- package/templates/partials/topic/sort.tpl +9 -9
- package/templates/partials/topic/stats.tpl +11 -11
- package/templates/partials/topic/tags.tpl +4 -4
- package/templates/partials/topic/watch.tpl +20 -20
- package/templates/partials/users_list.tpl +39 -39
- package/templates/partials/users_list_menu.tpl +10 -10
- package/templates/popular.tpl +61 -61
- package/templates/post-queue.tpl +82 -82
- package/templates/recent.tpl +51 -51
- package/templates/reset.tpl +23 -23
- package/templates/reset_code.tpl +41 -41
- package/templates/tag.tpl +35 -35
- package/templates/tags.tpl +30 -30
- package/templates/top.tpl +61 -61
- package/templates/tos.tpl +4 -4
- package/templates/unread.tpl +49 -49
- package/templates/users.tpl +47 -47
- package/theme.json +6 -6
- package/theme.less +1 -1
|
@@ -1,105 +1,105 @@
|
|
|
1
|
-
<div class="clearfix post-header">
|
|
2
|
-
<div class="icon pull-left">
|
|
3
|
-
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->">
|
|
4
|
-
{buildAvatar(posts.user, "sm2x", true, "", "user/picture")}
|
|
5
|
-
<i component="user/status" class="fa fa-circle status {posts.user.status}" title="[[global:{posts.user.status}]]"></i>
|
|
6
|
-
</a>
|
|
7
|
-
</div>
|
|
8
|
-
|
|
9
|
-
<small class="pull-left">
|
|
10
|
-
<strong>
|
|
11
|
-
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->" itemprop="author" data-username="{posts.user.username}" data-uid="{posts.user.uid}">{posts.user.displayname}</a>
|
|
12
|
-
</strong>
|
|
13
|
-
|
|
14
|
-
<!-- IMPORT partials/topic/badge.tpl -->
|
|
15
|
-
|
|
16
|
-
<!-- IF posts.user.banned -->
|
|
17
|
-
<span class="label label-danger">[[user:banned]]</span>
|
|
18
|
-
<!-- ENDIF posts.user.banned -->
|
|
19
|
-
|
|
20
|
-
<span class="visible-xs-inline-block visible-sm-inline-block visible-md-inline-block visible-lg-inline-block">
|
|
21
|
-
<!-- IF posts.toPid -->
|
|
22
|
-
<a component="post/parent" class="btn btn-xs btn-default hidden-xs" data-topid="{posts.toPid}" href="{config.relative_path}/post/{posts.toPid}"><i class="fa fa-reply"></i> @<!-- IF posts.parent.username -->{posts.parent.username}<!-- ELSE -->[[global:guest]]<!-- ENDIF posts.parent.username --></a>
|
|
23
|
-
<!-- ENDIF posts.toPid -->
|
|
24
|
-
|
|
25
|
-
<span>
|
|
26
|
-
<!-- IF posts.user.custom_profile_info.length -->
|
|
27
|
-
|
|
|
28
|
-
{{{each posts.user.custom_profile_info}}}
|
|
29
|
-
{posts.user.custom_profile_info.content}
|
|
30
|
-
{{{end}}}
|
|
31
|
-
<!-- ENDIF posts.user.custom_profile_info.length -->
|
|
32
|
-
</span>
|
|
33
|
-
</span>
|
|
34
|
-
|
|
35
|
-
</small>
|
|
36
|
-
<small class="pull-right">
|
|
37
|
-
<span class="bookmarked"><i class="fa fa-bookmark-o"></i></span>
|
|
38
|
-
</small>
|
|
39
|
-
<small class="pull-right">
|
|
40
|
-
<i component="post/edit-indicator" class="fa fa-pencil-square<!-- IF privileges.posts:history --> pointer<!-- END --> edit-icon <!-- IF !posts.editor.username -->hidden<!-- ENDIF !posts.editor.username -->"></i>
|
|
41
|
-
|
|
42
|
-
<small data-editor="{posts.editor.userslug}" component="post/editor" class="hidden">[[global:last_edited_by, {posts.editor.username}]] <span class="timeago" title="{posts.editedISO}"></span></small>
|
|
43
|
-
|
|
44
|
-
<span class="visible-xs-inline-block visible-sm-inline-block visible-md-inline-block visible-lg-inline-block">
|
|
45
|
-
<a class="permalink" href="{config.relative_path}/post/{posts.pid}"><span class="timeago" title="{posts.timestampISO}"></span></a>
|
|
46
|
-
</span>
|
|
47
|
-
</small>
|
|
48
|
-
</div>
|
|
49
|
-
|
|
50
|
-
<br />
|
|
51
|
-
|
|
52
|
-
<div class="content" component="post/content" itemprop="text">
|
|
53
|
-
{posts.content}
|
|
54
|
-
</div>
|
|
55
|
-
|
|
56
|
-
<div class="post-footer">
|
|
57
|
-
{{{ if posts.user.signature }}}
|
|
58
|
-
<div component="post/signature" data-uid="{posts.user.uid}" class="post-signature">{posts.user.signature}</div>
|
|
59
|
-
{{{ end }}}
|
|
60
|
-
|
|
61
|
-
<div class="clearfix">
|
|
62
|
-
{{{ if !hideReplies }}}
|
|
63
|
-
<a component="post/reply-count" data-target-component="post/replies/container" href="#" class="threaded-replies no-select pull-left {{{ if !posts.replies.count }}}hidden{{{ end }}}">
|
|
64
|
-
<span component="post/reply-count/avatars" class="avatars {{{ if posts.replies.hasMore }}}hasMore{{{ end }}}">
|
|
65
|
-
{{{each posts.replies.users}}}
|
|
66
|
-
{buildAvatar(posts.replies.users, "xs", true, "")}
|
|
67
|
-
{{{end}}}
|
|
68
|
-
</span>
|
|
69
|
-
|
|
70
|
-
<span class="replies-count" component="post/reply-count/text" data-replies="{posts.replies.count}">{posts.replies.text}</span>
|
|
71
|
-
<span class="replies-last hidden-xs">[[topic:last_reply_time]] <span class="timeago" title="{posts.replies.timestampISO}"></span></span>
|
|
72
|
-
|
|
73
|
-
<i class="fa fa-fw fa-chevron-right" component="post/replies/open"></i>
|
|
74
|
-
<i class="fa fa-fw fa-chevron-down hidden" component="post/replies/close"></i>
|
|
75
|
-
<i class="fa fa-fw fa-spin fa-spinner hidden" component="post/replies/loading"></i>
|
|
76
|
-
</a>
|
|
77
|
-
{{{ end }}}
|
|
78
|
-
|
|
79
|
-
<small class="pull-right">
|
|
80
|
-
<span class="post-tools">
|
|
81
|
-
<a component="post/reply" href="#" class="no-select <!-- IF !privileges.topics:reply -->hidden<!-- ENDIF !privileges.topics:reply -->">[[topic:reply]]</a>
|
|
82
|
-
<a component="post/quote" href="#" class="no-select <!-- IF !privileges.topics:reply -->hidden<!-- ENDIF !privileges.topics:reply -->">[[topic:quote]]</a>
|
|
83
|
-
</span>
|
|
84
|
-
|
|
85
|
-
<!-- IF !reputation:disabled -->
|
|
86
|
-
<span class="votes">
|
|
87
|
-
<a component="post/upvote" href="#" class="<!-- IF posts.upvoted -->upvoted<!-- ENDIF posts.upvoted -->">
|
|
88
|
-
<i class="fa fa-chevron-up"></i>
|
|
89
|
-
</a>
|
|
90
|
-
|
|
91
|
-
<span component="post/vote-count" data-votes="{posts.votes}">{posts.votes}</span>
|
|
92
|
-
|
|
93
|
-
<!-- IF !downvote:disabled -->
|
|
94
|
-
<a component="post/downvote" href="#" class="<!-- IF posts.downvoted -->downvoted<!-- ENDIF posts.downvoted -->">
|
|
95
|
-
<i class="fa fa-chevron-down"></i>
|
|
96
|
-
</a>
|
|
97
|
-
<!-- ENDIF !downvote:disabled -->
|
|
98
|
-
</span>
|
|
99
|
-
<!-- ENDIF !reputation:disabled -->
|
|
100
|
-
|
|
101
|
-
<!-- IMPORT partials/topic/post-menu.tpl -->
|
|
102
|
-
</small>
|
|
103
|
-
</div>
|
|
104
|
-
<div component="post/replies/container"></div>
|
|
1
|
+
<div class="clearfix post-header">
|
|
2
|
+
<div class="icon pull-left">
|
|
3
|
+
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->">
|
|
4
|
+
{buildAvatar(posts.user, "sm2x", true, "", "user/picture")}
|
|
5
|
+
<i component="user/status" class="fa fa-circle status {posts.user.status}" title="[[global:{posts.user.status}]]"></i>
|
|
6
|
+
</a>
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<small class="pull-left">
|
|
10
|
+
<strong>
|
|
11
|
+
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->" itemprop="author" data-username="{posts.user.username}" data-uid="{posts.user.uid}">{posts.user.displayname}</a>
|
|
12
|
+
</strong>
|
|
13
|
+
|
|
14
|
+
<!-- IMPORT partials/topic/badge.tpl -->
|
|
15
|
+
|
|
16
|
+
<!-- IF posts.user.banned -->
|
|
17
|
+
<span class="label label-danger">[[user:banned]]</span>
|
|
18
|
+
<!-- ENDIF posts.user.banned -->
|
|
19
|
+
|
|
20
|
+
<span class="visible-xs-inline-block visible-sm-inline-block visible-md-inline-block visible-lg-inline-block">
|
|
21
|
+
<!-- IF posts.toPid -->
|
|
22
|
+
<a component="post/parent" class="btn btn-xs btn-default hidden-xs" data-topid="{posts.toPid}" href="{config.relative_path}/post/{posts.toPid}"><i class="fa fa-reply"></i> @<!-- IF posts.parent.username -->{posts.parent.username}<!-- ELSE -->[[global:guest]]<!-- ENDIF posts.parent.username --></a>
|
|
23
|
+
<!-- ENDIF posts.toPid -->
|
|
24
|
+
|
|
25
|
+
<span>
|
|
26
|
+
<!-- IF posts.user.custom_profile_info.length -->
|
|
27
|
+
|
|
|
28
|
+
{{{each posts.user.custom_profile_info}}}
|
|
29
|
+
{posts.user.custom_profile_info.content}
|
|
30
|
+
{{{end}}}
|
|
31
|
+
<!-- ENDIF posts.user.custom_profile_info.length -->
|
|
32
|
+
</span>
|
|
33
|
+
</span>
|
|
34
|
+
|
|
35
|
+
</small>
|
|
36
|
+
<small class="pull-right">
|
|
37
|
+
<span class="bookmarked"><i class="fa fa-bookmark-o"></i></span>
|
|
38
|
+
</small>
|
|
39
|
+
<small class="pull-right">
|
|
40
|
+
<i component="post/edit-indicator" class="fa fa-pencil-square<!-- IF privileges.posts:history --> pointer<!-- END --> edit-icon <!-- IF !posts.editor.username -->hidden<!-- ENDIF !posts.editor.username -->"></i>
|
|
41
|
+
|
|
42
|
+
<small data-editor="{posts.editor.userslug}" component="post/editor" class="hidden">[[global:last_edited_by, {posts.editor.username}]] <span class="timeago" title="{posts.editedISO}"></span></small>
|
|
43
|
+
|
|
44
|
+
<span class="visible-xs-inline-block visible-sm-inline-block visible-md-inline-block visible-lg-inline-block">
|
|
45
|
+
<a class="permalink" href="{config.relative_path}/post/{posts.pid}"><span class="timeago" title="{posts.timestampISO}"></span></a>
|
|
46
|
+
</span>
|
|
47
|
+
</small>
|
|
48
|
+
</div>
|
|
49
|
+
|
|
50
|
+
<br />
|
|
51
|
+
|
|
52
|
+
<div class="content" component="post/content" itemprop="text">
|
|
53
|
+
{posts.content}
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<div class="post-footer">
|
|
57
|
+
{{{ if posts.user.signature }}}
|
|
58
|
+
<div component="post/signature" data-uid="{posts.user.uid}" class="post-signature">{posts.user.signature}</div>
|
|
59
|
+
{{{ end }}}
|
|
60
|
+
|
|
61
|
+
<div class="clearfix">
|
|
62
|
+
{{{ if !hideReplies }}}
|
|
63
|
+
<a component="post/reply-count" data-target-component="post/replies/container" href="#" class="threaded-replies no-select pull-left {{{ if !posts.replies.count }}}hidden{{{ end }}}">
|
|
64
|
+
<span component="post/reply-count/avatars" class="avatars {{{ if posts.replies.hasMore }}}hasMore{{{ end }}}">
|
|
65
|
+
{{{each posts.replies.users}}}
|
|
66
|
+
{buildAvatar(posts.replies.users, "xs", true, "")}
|
|
67
|
+
{{{end}}}
|
|
68
|
+
</span>
|
|
69
|
+
|
|
70
|
+
<span class="replies-count" component="post/reply-count/text" data-replies="{posts.replies.count}">{posts.replies.text}</span>
|
|
71
|
+
<span class="replies-last hidden-xs">[[topic:last_reply_time]] <span class="timeago" title="{posts.replies.timestampISO}"></span></span>
|
|
72
|
+
|
|
73
|
+
<i class="fa fa-fw fa-chevron-right" component="post/replies/open"></i>
|
|
74
|
+
<i class="fa fa-fw fa-chevron-down hidden" component="post/replies/close"></i>
|
|
75
|
+
<i class="fa fa-fw fa-spin fa-spinner hidden" component="post/replies/loading"></i>
|
|
76
|
+
</a>
|
|
77
|
+
{{{ end }}}
|
|
78
|
+
|
|
79
|
+
<small class="pull-right">
|
|
80
|
+
<span class="post-tools">
|
|
81
|
+
<a component="post/reply" href="#" class="no-select <!-- IF !privileges.topics:reply -->hidden<!-- ENDIF !privileges.topics:reply -->">[[topic:reply]]</a>
|
|
82
|
+
<a component="post/quote" href="#" class="no-select <!-- IF !privileges.topics:reply -->hidden<!-- ENDIF !privileges.topics:reply -->">[[topic:quote]]</a>
|
|
83
|
+
</span>
|
|
84
|
+
|
|
85
|
+
<!-- IF !reputation:disabled -->
|
|
86
|
+
<span class="votes">
|
|
87
|
+
<a component="post/upvote" href="#" class="<!-- IF posts.upvoted -->upvoted<!-- ENDIF posts.upvoted -->">
|
|
88
|
+
<i class="fa fa-chevron-up"></i>
|
|
89
|
+
</a>
|
|
90
|
+
|
|
91
|
+
<span component="post/vote-count" data-votes="{posts.votes}">{posts.votes}</span>
|
|
92
|
+
|
|
93
|
+
<!-- IF !downvote:disabled -->
|
|
94
|
+
<a component="post/downvote" href="#" class="<!-- IF posts.downvoted -->downvoted<!-- ENDIF posts.downvoted -->">
|
|
95
|
+
<i class="fa fa-chevron-down"></i>
|
|
96
|
+
</a>
|
|
97
|
+
<!-- ENDIF !downvote:disabled -->
|
|
98
|
+
</span>
|
|
99
|
+
<!-- ENDIF !reputation:disabled -->
|
|
100
|
+
|
|
101
|
+
<!-- IMPORT partials/topic/post-menu.tpl -->
|
|
102
|
+
</small>
|
|
103
|
+
</div>
|
|
104
|
+
<div component="post/replies/container"></div>
|
|
105
105
|
</div>
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
<!-- IF privileges.topics:reply -->
|
|
2
|
-
<div component="topic/quickreply/container" class="clearfix quick-reply">
|
|
3
|
-
<div class="icon pull-left hidden-xs">
|
|
4
|
-
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->">
|
|
5
|
-
{buildAvatar(loggedInUser, "46", true, "", "user/picture")}
|
|
6
|
-
<!-- IF loggedInUser.status -->
|
|
7
|
-
<i component="user/status" class="fa fa-circle status {loggedInUser.status}" title="[[global:{loggedInUser.status}]]"></i>
|
|
8
|
-
<!-- ENDIF loggedInUser.status -->
|
|
9
|
-
</a>
|
|
10
|
-
</div>
|
|
11
|
-
<form method="post" action="{config.relative_path}/compose">
|
|
12
|
-
<input type="hidden" name="tid" value="{tid}" />
|
|
13
|
-
<input type="hidden" name="_csrf" value="{config.csrf_token}" />
|
|
14
|
-
<div class="quickreply-message">
|
|
15
|
-
<textarea name="content" component="topic/quickreply/text" class="form-control" rows="5" placeholder="[[modules:composer.textarea.placeholder]]"></textarea>
|
|
16
|
-
<div class="imagedrop"><div>[[topic:composer.drag_and_drop_images]]</div></div>
|
|
17
|
-
</div>
|
|
18
|
-
<button type="submit" component="topic/quickreply/button" class="btn btn-primary pull-right">[[topic:post-quick-reply]]</button>
|
|
19
|
-
</form>
|
|
20
|
-
<form component="topic/quickreply/upload" method="post" enctype="multipart/form-data">
|
|
21
|
-
<input type="file" name="files[]" multiple class="hidden"/>
|
|
22
|
-
</form>
|
|
23
|
-
|
|
24
|
-
</div>
|
|
25
|
-
<!-- ENDIF privileges.topics:reply -->
|
|
1
|
+
<!-- IF privileges.topics:reply -->
|
|
2
|
+
<div component="topic/quickreply/container" class="clearfix quick-reply">
|
|
3
|
+
<div class="icon pull-left hidden-xs">
|
|
4
|
+
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->">
|
|
5
|
+
{buildAvatar(loggedInUser, "46", true, "", "user/picture")}
|
|
6
|
+
<!-- IF loggedInUser.status -->
|
|
7
|
+
<i component="user/status" class="fa fa-circle status {loggedInUser.status}" title="[[global:{loggedInUser.status}]]"></i>
|
|
8
|
+
<!-- ENDIF loggedInUser.status -->
|
|
9
|
+
</a>
|
|
10
|
+
</div>
|
|
11
|
+
<form method="post" action="{config.relative_path}/compose">
|
|
12
|
+
<input type="hidden" name="tid" value="{tid}" />
|
|
13
|
+
<input type="hidden" name="_csrf" value="{config.csrf_token}" />
|
|
14
|
+
<div class="quickreply-message">
|
|
15
|
+
<textarea name="content" component="topic/quickreply/text" class="form-control" rows="5" placeholder="[[modules:composer.textarea.placeholder]]"></textarea>
|
|
16
|
+
<div class="imagedrop"><div>[[topic:composer.drag_and_drop_images]]</div></div>
|
|
17
|
+
</div>
|
|
18
|
+
<button type="submit" component="topic/quickreply/button" class="btn btn-primary pull-right">[[topic:post-quick-reply]]</button>
|
|
19
|
+
</form>
|
|
20
|
+
<form component="topic/quickreply/upload" method="post" enctype="multipart/form-data">
|
|
21
|
+
<input type="file" name="files[]" multiple class="hidden"/>
|
|
22
|
+
</form>
|
|
23
|
+
|
|
24
|
+
</div>
|
|
25
|
+
<!-- ENDIF privileges.topics:reply -->
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
<div component="topic/reply/container" class="btn-group action-bar bottom-sheet <!-- IF !privileges.topics:reply -->hidden<!-- ENDIF !privileges.topics:reply -->">
|
|
2
|
-
<a href="{config.relative_path}/compose?tid={tid}&title={title}" class="btn btn-sm btn-primary" component="topic/reply" data-ajaxify="false" role="button"><i class="fa fa-reply visible-xs-inline"></i><span class="visible-sm-inline visible-md-inline visible-lg-inline"> [[topic:reply]]</span></a>
|
|
3
|
-
<button type="button" class="btn btn-sm btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
4
|
-
<span class="caret"></span>
|
|
5
|
-
</button>
|
|
6
|
-
<ul class="dropdown-menu pull-right" role="menu">
|
|
7
|
-
<li><a href="#" component="topic/reply-as-topic">[[topic:reply-as-topic]]</a></li>
|
|
8
|
-
</ul>
|
|
9
|
-
</div>
|
|
10
|
-
|
|
11
|
-
<!-- IF loggedIn -->
|
|
12
|
-
<!-- IF !privileges.topics:reply -->
|
|
13
|
-
<!-- IF locked -->
|
|
14
|
-
<a component="topic/reply/locked" class="btn btn-sm btn-primary" disabled><i class="fa fa-lock"></i> [[topic:locked]]</a>
|
|
15
|
-
<!-- ENDIF locked -->
|
|
16
|
-
<!-- ENDIF !privileges.topics:reply -->
|
|
17
|
-
|
|
18
|
-
<!-- IF !locked -->
|
|
19
|
-
<a component="topic/reply/locked" class="btn btn-sm btn-primary hidden" disabled><i class="fa fa-lock"></i> [[topic:locked]]</a>
|
|
20
|
-
<!-- ENDIF !locked -->
|
|
21
|
-
|
|
22
|
-
<!-- ELSE -->
|
|
23
|
-
|
|
24
|
-
<!-- IF !privileges.topics:reply -->
|
|
25
|
-
<a component="topic/reply/guest" href="{config.relative_path}/login" class="btn btn-sm btn-primary">[[topic:guest-login-reply]]</a>
|
|
26
|
-
<!-- ENDIF !privileges.topics:reply -->
|
|
1
|
+
<div component="topic/reply/container" class="btn-group action-bar bottom-sheet <!-- IF !privileges.topics:reply -->hidden<!-- ENDIF !privileges.topics:reply -->">
|
|
2
|
+
<a href="{config.relative_path}/compose?tid={tid}&title={title}" class="btn btn-sm btn-primary" component="topic/reply" data-ajaxify="false" role="button"><i class="fa fa-reply visible-xs-inline"></i><span class="visible-sm-inline visible-md-inline visible-lg-inline"> [[topic:reply]]</span></a>
|
|
3
|
+
<button type="button" class="btn btn-sm btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
4
|
+
<span class="caret"></span>
|
|
5
|
+
</button>
|
|
6
|
+
<ul class="dropdown-menu pull-right" role="menu">
|
|
7
|
+
<li><a href="#" component="topic/reply-as-topic">[[topic:reply-as-topic]]</a></li>
|
|
8
|
+
</ul>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
<!-- IF loggedIn -->
|
|
12
|
+
<!-- IF !privileges.topics:reply -->
|
|
13
|
+
<!-- IF locked -->
|
|
14
|
+
<a component="topic/reply/locked" class="btn btn-sm btn-primary" disabled><i class="fa fa-lock"></i> [[topic:locked]]</a>
|
|
15
|
+
<!-- ENDIF locked -->
|
|
16
|
+
<!-- ENDIF !privileges.topics:reply -->
|
|
17
|
+
|
|
18
|
+
<!-- IF !locked -->
|
|
19
|
+
<a component="topic/reply/locked" class="btn btn-sm btn-primary hidden" disabled><i class="fa fa-lock"></i> [[topic:locked]]</a>
|
|
20
|
+
<!-- ENDIF !locked -->
|
|
21
|
+
|
|
22
|
+
<!-- ELSE -->
|
|
23
|
+
|
|
24
|
+
<!-- IF !privileges.topics:reply -->
|
|
25
|
+
<a component="topic/reply/guest" href="{config.relative_path}/login" class="btn btn-sm btn-primary">[[topic:guest-login-reply]]</a>
|
|
26
|
+
<!-- ENDIF !privileges.topics:reply -->
|
|
27
27
|
<!-- ENDIF loggedIn -->
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<div component="selection/tooltip" class="selection-tooltip-container">
|
|
2
|
-
<button component="selection/tooltip/quote" class="btn btn-sm btn-primary quote-tooltip-btn">[[topic:quote]]</button>
|
|
1
|
+
<div component="selection/tooltip" class="selection-tooltip-container">
|
|
2
|
+
<button component="selection/tooltip/quote" class="btn btn-sm btn-primary quote-tooltip-btn">[[topic:quote]]</button>
|
|
3
3
|
</div>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<div title="[[topic:sort_by]]" class="btn-group bottom-sheet hidden-xs" component="thread/sort">
|
|
2
|
-
<button class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown" type="button">
|
|
3
|
-
<span><i class="fa fa-fw fa-sort"></i></span></button>
|
|
4
|
-
<ul class="dropdown-menu dropdown-menu-right">
|
|
5
|
-
<li><a href="#" class="oldest_to_newest" data-sort="oldest_to_newest"><i class="fa fa-fw"></i> [[topic:oldest_to_newest]]</a></li>
|
|
6
|
-
<li><a href="#" class="newest_to_oldest" data-sort="newest_to_oldest"><i class="fa fa-fw"></i> [[topic:newest_to_oldest]]</a></li>
|
|
7
|
-
<li><a href="#" class="most_votes" data-sort="most_votes"><i class="fa fa-fw"></i> [[topic:most_votes]]</a></li>
|
|
8
|
-
</ul>
|
|
9
|
-
</div>
|
|
1
|
+
<div title="[[topic:sort_by]]" class="btn-group bottom-sheet hidden-xs" component="thread/sort">
|
|
2
|
+
<button class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown" type="button">
|
|
3
|
+
<span><i class="fa fa-fw fa-sort"></i></span></button>
|
|
4
|
+
<ul class="dropdown-menu dropdown-menu-right">
|
|
5
|
+
<li><a href="#" class="oldest_to_newest" data-sort="oldest_to_newest"><i class="fa fa-fw"></i> [[topic:oldest_to_newest]]</a></li>
|
|
6
|
+
<li><a href="#" class="newest_to_oldest" data-sort="newest_to_oldest"><i class="fa fa-fw"></i> [[topic:newest_to_oldest]]</a></li>
|
|
7
|
+
<li><a href="#" class="most_votes" data-sort="most_votes"><i class="fa fa-fw"></i> [[topic:most_votes]]</a></li>
|
|
8
|
+
</ul>
|
|
9
|
+
</div>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<div class="stats text-muted">
|
|
2
|
-
<i class="fa fa-fw fa-user" title="[[global:posters]]"></i>
|
|
3
|
-
<span title="{postercount}" class="human-readable-number">{postercount}</span>
|
|
4
|
-
</div>
|
|
5
|
-
<div class="stats text-muted">
|
|
6
|
-
<i class="fa fa-fw fa-pencil" title="[[global:posts]]"></i>
|
|
7
|
-
<span component="topic/post-count" title="{postcount}" class="human-readable-number">{postcount}</span>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="stats text-muted">
|
|
10
|
-
<i class="fa fa-fw fa-eye" title="[[global:views]]"></i>
|
|
11
|
-
<span class="human-readable-number" title="{viewcount}">{viewcount}</span>
|
|
1
|
+
<div class="stats text-muted">
|
|
2
|
+
<i class="fa fa-fw fa-user" title="[[global:posters]]"></i>
|
|
3
|
+
<span title="{postercount}" class="human-readable-number">{postercount}</span>
|
|
4
|
+
</div>
|
|
5
|
+
<div class="stats text-muted">
|
|
6
|
+
<i class="fa fa-fw fa-pencil" title="[[global:posts]]"></i>
|
|
7
|
+
<span component="topic/post-count" title="{postcount}" class="human-readable-number">{postcount}</span>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="stats text-muted">
|
|
10
|
+
<i class="fa fa-fw fa-eye" title="[[global:views]]"></i>
|
|
11
|
+
<span class="human-readable-number" title="{viewcount}">{viewcount}</span>
|
|
12
12
|
</div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
{{{each tags}}}
|
|
2
|
-
<a href="{config.relative_path}/tags/{tags.valueEncoded}">
|
|
3
|
-
<span class="tag tag-item tag-class-{tags.class}" data-tag="{tags.value}">{tags.valueEscaped}</span>
|
|
4
|
-
</a>
|
|
1
|
+
{{{each tags}}}
|
|
2
|
+
<a href="{config.relative_path}/tags/{tags.valueEncoded}">
|
|
3
|
+
<span class="tag tag-item tag-class-{tags.class}" data-tag="{tags.value}">{tags.valueEscaped}</span>
|
|
4
|
+
</a>
|
|
5
5
|
{{{end}}}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<!-- IF config.loggedIn -->
|
|
2
|
-
<div class="btn-group topic-watch-dropdown bottom-sheet" component="topic/watch">
|
|
3
|
-
<button class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown" type="button"
|
|
4
|
-
{{{if isFollowing}}}title="[[topic:watching]]"{{{end}}}
|
|
5
|
-
{{{if isNotFollowing}}}title="[[topic:not-watching]]"{{{end}}}
|
|
6
|
-
{{{if isIgnoring}}}title="[[topic:ignoring]]"{{{end}}}
|
|
7
|
-
>
|
|
8
|
-
<span component="topic/following/menu" <!-- IF !isFollowing -->class="hidden"<!-- ENDIF !isFollowing -->><i class="fa fa-fw fa-bell-o"></i></span>
|
|
9
|
-
|
|
10
|
-
<span component="topic/not-following/menu" <!-- IF !isNotFollowing -->class="hidden"<!-- ENDIF !isNotFollowing -->><i class="fa fa-fw fa-bell-slash-o"></i></span>
|
|
11
|
-
|
|
12
|
-
<span component="topic/ignoring/menu" <!-- IF !isIgnoring -->class="hidden"<!-- ENDIF !isIgnoring -->><i class="fa fa-fw fa-eye-slash"></i></span>
|
|
13
|
-
|
|
14
|
-
</button>
|
|
15
|
-
<ul class="dropdown-menu dropdown-menu-right">
|
|
16
|
-
<li><a href="#" component="topic/following"><i component="topic/following/check" class="fa fa-fw <!-- IF isFollowing -->fa-check<!-- ENDIF isFollowing -->"></i><i class="fa fa-fw fa-bell-o"></i> [[topic:watching]]<p class="help-text hidden-xs"><small>[[topic:watching.description]]</small></p></a></li>
|
|
17
|
-
<li><a href="#" component="topic/not-following"><i component="topic/not-following/check" class="fa fa-fw <!-- IF isNotFollowing -->fa-check<!-- ENDIF isNotFollowing -->"></i><i class="fa fa-fw fa-bell-slash-o"></i> [[topic:not-watching]]<p class="help-text hidden-xs"><small>[[topic:not-watching.description]]</small></p></a></li>
|
|
18
|
-
<li><a href="#" component="topic/ignoring"><i component="topic/ignoring/check" class="fa fa-fw <!-- IF isIgnoring -->fa-check<!-- ENDIF isIgnoring -->"></i><i class="fa fa-fw fa-eye-slash"></i> [[topic:ignoring]]<p class="help-text hidden-xs"><small>[[topic:ignoring.description]]</small></p></a></li>
|
|
19
|
-
</ul>
|
|
20
|
-
</div>
|
|
1
|
+
<!-- IF config.loggedIn -->
|
|
2
|
+
<div class="btn-group topic-watch-dropdown bottom-sheet" component="topic/watch">
|
|
3
|
+
<button class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown" type="button"
|
|
4
|
+
{{{if isFollowing}}}title="[[topic:watching]]"{{{end}}}
|
|
5
|
+
{{{if isNotFollowing}}}title="[[topic:not-watching]]"{{{end}}}
|
|
6
|
+
{{{if isIgnoring}}}title="[[topic:ignoring]]"{{{end}}}
|
|
7
|
+
>
|
|
8
|
+
<span component="topic/following/menu" <!-- IF !isFollowing -->class="hidden"<!-- ENDIF !isFollowing -->><i class="fa fa-fw fa-bell-o"></i></span>
|
|
9
|
+
|
|
10
|
+
<span component="topic/not-following/menu" <!-- IF !isNotFollowing -->class="hidden"<!-- ENDIF !isNotFollowing -->><i class="fa fa-fw fa-bell-slash-o"></i></span>
|
|
11
|
+
|
|
12
|
+
<span component="topic/ignoring/menu" <!-- IF !isIgnoring -->class="hidden"<!-- ENDIF !isIgnoring -->><i class="fa fa-fw fa-eye-slash"></i></span>
|
|
13
|
+
|
|
14
|
+
</button>
|
|
15
|
+
<ul class="dropdown-menu dropdown-menu-right">
|
|
16
|
+
<li><a href="#" component="topic/following"><i component="topic/following/check" class="fa fa-fw <!-- IF isFollowing -->fa-check<!-- ENDIF isFollowing -->"></i><i class="fa fa-fw fa-bell-o"></i> [[topic:watching]]<p class="help-text hidden-xs"><small>[[topic:watching.description]]</small></p></a></li>
|
|
17
|
+
<li><a href="#" component="topic/not-following"><i component="topic/not-following/check" class="fa fa-fw <!-- IF isNotFollowing -->fa-check<!-- ENDIF isNotFollowing -->"></i><i class="fa fa-fw fa-bell-slash-o"></i> [[topic:not-watching]]<p class="help-text hidden-xs"><small>[[topic:not-watching.description]]</small></p></a></li>
|
|
18
|
+
<li><a href="#" component="topic/ignoring"><i component="topic/ignoring/check" class="fa fa-fw <!-- IF isIgnoring -->fa-check<!-- ENDIF isIgnoring -->"></i><i class="fa fa-fw fa-eye-slash"></i> [[topic:ignoring]]<p class="help-text hidden-xs"><small>[[topic:ignoring.description]]</small></p></a></li>
|
|
19
|
+
</ul>
|
|
20
|
+
</div>
|
|
21
21
|
<!-- ENDIF config.loggedIn -->
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
{{{each users}}}
|
|
2
|
-
<li class="users-box registered-user" data-uid="{users.uid}">
|
|
3
|
-
<a href="{config.relative_path}/user/{users.userslug}">{buildAvatar(users, "lg", true)}</a>
|
|
4
|
-
<br/>
|
|
5
|
-
<div class="user-info">
|
|
6
|
-
<span>
|
|
7
|
-
<i component="user/status" class="fa fa-circle status {users.status}" title="[[global:{users.status}]]"></i>
|
|
8
|
-
<a href="{config.relative_path}/user/{users.userslug}">{users.username}</a>
|
|
9
|
-
</span>
|
|
10
|
-
<br/>
|
|
11
|
-
|
|
12
|
-
<!-- IF section_joindate -->
|
|
13
|
-
<div title="joindate" class="joindate">
|
|
14
|
-
<span class="timeago" title="{users.joindateISO}"></span>
|
|
15
|
-
</div>
|
|
16
|
-
<!-- ENDIF section_joindate -->
|
|
17
|
-
|
|
18
|
-
<!-- IF section_sort-reputation -->
|
|
19
|
-
<div title="reputation" class="reputation">
|
|
20
|
-
<i class="fa fa-star"></i>
|
|
21
|
-
<span class="formatted-number">{users.reputation}</span>
|
|
22
|
-
</div>
|
|
23
|
-
<!-- ENDIF section_sort-reputation -->
|
|
24
|
-
|
|
25
|
-
<!-- IF section_sort-posts -->
|
|
26
|
-
<div title="post count" class="post-count">
|
|
27
|
-
<i class="fa fa-pencil"></i>
|
|
28
|
-
<span class="formatted-number">{users.postcount}</span>
|
|
29
|
-
</div>
|
|
30
|
-
<!-- ENDIF section_sort-posts -->
|
|
31
|
-
|
|
32
|
-
<!-- IF section_flagged -->
|
|
33
|
-
<div title="flag count" class="flag-count">
|
|
34
|
-
<i class="fa fa-flag"></i>
|
|
35
|
-
<span><a class="formatted-number" href="{config.relative_path}/flags?targetUid={users.uid}">{users.flags}</a></span>
|
|
36
|
-
</div>
|
|
37
|
-
<!-- ENDIF section_flagged -->
|
|
38
|
-
</div>
|
|
39
|
-
</li>
|
|
1
|
+
{{{each users}}}
|
|
2
|
+
<li class="users-box registered-user" data-uid="{users.uid}">
|
|
3
|
+
<a href="{config.relative_path}/user/{users.userslug}">{buildAvatar(users, "lg", true)}</a>
|
|
4
|
+
<br/>
|
|
5
|
+
<div class="user-info">
|
|
6
|
+
<span>
|
|
7
|
+
<i component="user/status" class="fa fa-circle status {users.status}" title="[[global:{users.status}]]"></i>
|
|
8
|
+
<a href="{config.relative_path}/user/{users.userslug}">{users.username}</a>
|
|
9
|
+
</span>
|
|
10
|
+
<br/>
|
|
11
|
+
|
|
12
|
+
<!-- IF section_joindate -->
|
|
13
|
+
<div title="joindate" class="joindate">
|
|
14
|
+
<span class="timeago" title="{users.joindateISO}"></span>
|
|
15
|
+
</div>
|
|
16
|
+
<!-- ENDIF section_joindate -->
|
|
17
|
+
|
|
18
|
+
<!-- IF section_sort-reputation -->
|
|
19
|
+
<div title="reputation" class="reputation">
|
|
20
|
+
<i class="fa fa-star"></i>
|
|
21
|
+
<span class="formatted-number">{users.reputation}</span>
|
|
22
|
+
</div>
|
|
23
|
+
<!-- ENDIF section_sort-reputation -->
|
|
24
|
+
|
|
25
|
+
<!-- IF section_sort-posts -->
|
|
26
|
+
<div title="post count" class="post-count">
|
|
27
|
+
<i class="fa fa-pencil"></i>
|
|
28
|
+
<span class="formatted-number">{users.postcount}</span>
|
|
29
|
+
</div>
|
|
30
|
+
<!-- ENDIF section_sort-posts -->
|
|
31
|
+
|
|
32
|
+
<!-- IF section_flagged -->
|
|
33
|
+
<div title="flag count" class="flag-count">
|
|
34
|
+
<i class="fa fa-flag"></i>
|
|
35
|
+
<span><a class="formatted-number" href="{config.relative_path}/flags?targetUid={users.uid}">{users.flags}</a></span>
|
|
36
|
+
</div>
|
|
37
|
+
<!-- ENDIF section_flagged -->
|
|
38
|
+
</div>
|
|
39
|
+
</li>
|
|
40
40
|
{{{end}}}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
<ul class="nav nav-pills">
|
|
2
|
-
<li><a href="{config.relative_path}/users?section=online">[[global:online]]</a></li>
|
|
3
|
-
<li><a href="{config.relative_path}/users?section=sort-posts">[[users:top_posters]]</a></li>
|
|
4
|
-
<!-- IF !reputation:disabled -->
|
|
5
|
-
<li><a href="{config.relative_path}/users?section=sort-reputation">[[users:most_reputation]]</a></li>
|
|
6
|
-
<!-- ENDIF !reputation:disabled -->
|
|
7
|
-
<!-- IF isAdminOrGlobalMod -->
|
|
8
|
-
<li><a href="{config.relative_path}/users?section=flagged">[[users:most_flags]]</a></li>
|
|
9
|
-
<li><a href="{config.relative_path}/users?section=banned">[[user:banned]]</a></li>
|
|
10
|
-
<!-- ENDIF isAdminOrGlobalMod -->
|
|
1
|
+
<ul class="nav nav-pills">
|
|
2
|
+
<li><a href="{config.relative_path}/users?section=online">[[global:online]]</a></li>
|
|
3
|
+
<li><a href="{config.relative_path}/users?section=sort-posts">[[users:top_posters]]</a></li>
|
|
4
|
+
<!-- IF !reputation:disabled -->
|
|
5
|
+
<li><a href="{config.relative_path}/users?section=sort-reputation">[[users:most_reputation]]</a></li>
|
|
6
|
+
<!-- ENDIF !reputation:disabled -->
|
|
7
|
+
<!-- IF isAdminOrGlobalMod -->
|
|
8
|
+
<li><a href="{config.relative_path}/users?section=flagged">[[users:most_flags]]</a></li>
|
|
9
|
+
<li><a href="{config.relative_path}/users?section=banned">[[user:banned]]</a></li>
|
|
10
|
+
<!-- ENDIF isAdminOrGlobalMod -->
|
|
11
11
|
</ul>
|