diff --git a/plinth/modules/help/help.py b/plinth/modules/help/help.py
index 7b763202c..c9e20c452 100644
--- a/plinth/modules/help/help.py
+++ b/plinth/modules/help/help.py
@@ -52,11 +52,6 @@ class HelpApp(app_module.App):
None, 'fa-info-circle', 'help:manual',
parent_url_name='help:index', order=10)
self.add(menu_item)
- menu_item = menu.Menu('menu-help-download-manual',
- ugettext_lazy('Download Manual'), None,
- 'fa-download', 'help:download-manual',
- parent_url_name='help:index', order=15)
- self.add(menu_item)
menu_item = menu.Menu('menu-help-support',
ugettext_lazy('Get Support'), None,
'fa-life-ring', 'help:support',
diff --git a/plinth/modules/help/templates/help_index.html b/plinth/modules/help/templates/help_index.html
index 761bb5ebc..35178f20b 100644
--- a/plinth/modules/help/templates/help_index.html
+++ b/plinth/modules/help/templates/help_index.html
@@ -94,7 +94,3 @@
{% endif %}
{% endblock %}
-
-{% block page_js %}
-
-{% endblock %}
diff --git a/plinth/modules/help/templates/help_manual.html b/plinth/modules/help/templates/help_manual.html
index ee9ae0af9..951d64340 100644
--- a/plinth/modules/help/templates/help_manual.html
+++ b/plinth/modules/help/templates/help_manual.html
@@ -19,15 +19,28 @@
{% endcomment %}
{% load i18n %}
+{% load static %}
{% block page_head %}
{% endblock %}
{% block content %}
+
+
+
{{ content|safe }}
{% endblock %}
+
+{% block page_js %}
+
+{% endblock %}