diff options
author | Sheogorath | 2019-04-11 23:17:01 +0200 |
---|---|---|
committer | Sheogorath | 2019-04-12 12:29:56 +0200 |
commit | 454b39ac1053111b1d12677a1832685a73ee8239 (patch) | |
tree | d39f5d85fbfd46ebd9ea1c6ec3b20303cd5864f4 /public/views/shared | |
parent | 197b0db88f649d8c85689e9a9be0cea36f33a4fa (diff) |
Add community forum to help section
We have a community forum and want to use it for users support and to
bring developers and end-users together. In order to achieve this, it
would be helpful to inform users about its existence.
This patch adds the community forum as resource to the help section and
aligns it along the Matrix channel and GitHub issue tracker.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to '')
-rw-r--r-- | public/views/shared/help-modal.ejs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/public/views/shared/help-modal.ejs b/public/views/shared/help-modal.ejs index ab9f6b70..eb5566a8 100644 --- a/public/views/shared/help-modal.ejs +++ b/public/views/shared/help-modal.ejs @@ -15,11 +15,13 @@ <h3 class="panel-title"><%= __('Contacts') %></h3> </div> <div class="panel-body"> - <a href="https://github.com/codimd/server/issues" target="_blank"><i class="fa fa-tag fa-fw"></i> <%= __('Report an issue') %></a> + <a href="https://community.codimd.org" target="_blank"><i class="fa fa-users fa-fw"></i> <%= __('Join the community') %></a> <br> <a href="https://riot.im/app/#/room/#codimd:matrix.org" target="_blank"><i class="fa fa-hashtag fa-fw"></i> <%= __('Meet us on %s', 'Matrix') %></a> <br> - <a href="https://translate.codimd.org" target="_blank"><i class="fa fa-language fa-fw"></i> <%= __('Help us translating on %s', 'POEditor') %></a> + <a href="https://github.com/codimd/server/issues" target="_blank"><i class="fa fa-tag fa-fw"></i> <%= __('Report an issue') %></a> + <br> + <a href="https://translate.codimd.org" target="_blank"><i class="fa fa-language fa-fw"></i> <%= __('Help us translating') %></a> </div> </div> <div class="panel panel-default"> |