Not all of these have been fully implemented yet. **Jump To** * `g` then `h` - Home (Latest) * `g` then `l` - Latest * `g` then `n` - New * `g` then `u` - Unread * `g` then `f` - Favorited * `g` then `c` - Categories List **Navigation** * `u` - Back to topic list * `k` / `j` - Newer/Older conversation or post * `o` or `Enter` - Open selected conversation * <code>`</code> - Go to next section * `~` - Go to previous section **Application** * `c` - Create a new topic * `n` - Open notifications menu * `/` - Search * `?` - Open keyboard shortcut help **Actions** * `f` - Favorite topic * `s` - Share topic * `<Shift>` + `s` - Share selected post * `r` - Reply to topic * `<Shift>` + `r` - Reply to selected post * `l` - Like selected post * `!` - Flag selected post * `b` - Bookmark selected post * `e` - Edit selected post * `d` - Delete selected post * `m` then `m` - Mark topic as muted * `m` then `r` - Mark topic as regular * `m` then `t` - Mark topic as tracking * `m` then `w` - Mark topic as watching
27 lines
834 B
Handlebars
27 lines
834 B
Handlebars
<section class="d-dropdown" id="site-map-dropdown">
|
|
<ul class="location-links">
|
|
{{#if showAdminLinks}}
|
|
<li>{{partial "siteMap/adminLink"}}</li>
|
|
<li>{{partial "siteMap/flaggedPostsLinks"}}</li>
|
|
{{/if}}
|
|
<li>{{partial "siteMap/latestTopicsLink"}}</li>
|
|
<li>{{partial "siteMap/faqLink"}}</li>
|
|
<li>{{partial "siteMap/keyboardShortcutsHelpLink"}}</li>
|
|
{{#if showMobileToggle}}
|
|
<li>{{partial "siteMap/mobileToggleLink"}}</li>
|
|
{{/if}}
|
|
</ul>
|
|
|
|
{{#if categories}}
|
|
<ul class="category-links">
|
|
<li class="heading" title="{{i18n filters.categories.help}}">
|
|
{{partial "siteMap/allCategoriesLink"}}
|
|
</li>
|
|
|
|
{{#each categories itemController=itemController}}
|
|
<li class="category">{{partial "siteMap/category"}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|
|
</section>
|