diff --git a/app/controllers/help_controller.rb b/app/controllers/help_controller.rb
index a4fcd4b29e82bf88cc460b0d17c9f40cb4f412c4..fc498559d6b25386467a85f08d8bc7711b2addd6 100644
--- a/app/controllers/help_controller.rb
+++ b/app/controllers/help_controller.rb
@@ -2,17 +2,6 @@ class HelpController < ApplicationController
   def index
   end
 
-  def api
-    @category = params[:category]
-    @category = "README" if @category.blank?
-
-    if File.exists?(Rails.root.join('doc', 'api', @category + '.md'))
-      render 'api'
-    else
-      not_found!
-    end
-  end
-
   def show
     @category = params[:category]
     @file = params[:file]
diff --git a/app/views/help/_api_layout.html.haml b/app/views/help/_api_layout.html.haml
deleted file mode 100644
index af723f906d9e57f09e3f00aa7060a2c1f8899422..0000000000000000000000000000000000000000
--- a/app/views/help/_api_layout.html.haml
+++ /dev/null
@@ -1,13 +0,0 @@
-.row
-  .col-md-3
-    .append-bottom-20
-      = link_to help_path, class: 'btn btn-small' do
-        %i.icon-angle-left
-        Back to help
-    %ul.nav.nav-pills.nav-stacked
-      - %w(README projects project_snippets repositories repository_files commits deploy_keys users groups session issues milestones merge_requests notes system_hooks).each do |file|
-        %li{class: file == @category ? 'active' : nil}
-          = link_to file.titleize, help_api_file_path(file)
-
-  .col-md-9.pull-right
-    = yield
diff --git a/app/views/help/_layout.html.haml b/app/views/help/_layout.html.haml
deleted file mode 100644
index 93a746c60eaef582c2ea988b39b55721bee3505a..0000000000000000000000000000000000000000
--- a/app/views/help/_layout.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-.row
-  .col-md-3
-    %h3.page-title Help
-  .col-md-9
-    .wiki
-      = yield
diff --git a/app/views/help/api.html.haml b/app/views/help/api.html.haml
deleted file mode 100644
index 3d2cf50b7f216fa6bfff1cdddedfc482f1b1fc2b..0000000000000000000000000000000000000000
--- a/app/views/help/api.html.haml
+++ /dev/null
@@ -1,14 +0,0 @@
-= render layout: 'help/api_layout' do
-  %h3.page-title
-    %span.light API
-    %span
-      \/
-    = @category.titleize
-
-  .file-holder
-    .file-title
-      %i.icon-file
-      = @category
-    .file-content.wiki
-      = preserve do
-        = markdown File.read(Rails.root.join("doc", "api", "#{@category}.md"))
diff --git a/app/views/help/markdown.html.haml b/app/views/help/markdown.html.haml
deleted file mode 100644
index ec9d13f2d6bf779843daf8d6236d359737bae090..0000000000000000000000000000000000000000
--- a/app/views/help/markdown.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title GitLab Flavored Markdown
-
-  .help_body
-    = preserve do
-      = markdown File.read(Rails.root.join("doc", "markdown", "markdown.md"))
diff --git a/app/views/help/permissions.html.haml b/app/views/help/permissions.html.haml
deleted file mode 100644
index 5d3ee4526fec15f76dbbfaf3c7c1c2fcd6e30f15..0000000000000000000000000000000000000000
--- a/app/views/help/permissions.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title Permissions 
-
-  .help_body
-    = preserve do
-      = markdown File.read(Rails.root.join("doc", "permissions", "permissions.md"))
diff --git a/app/views/help/public_access.html.haml b/app/views/help/public_access.html.haml
deleted file mode 100644
index d1ec3f5d5c12eb527d4b3047803026c91f582021..0000000000000000000000000000000000000000
--- a/app/views/help/public_access.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title Public Access 
-
-  .help_body
-    = preserve do
-      = markdown File.read(Rails.root.join("doc", "public_access", "public_access.md"))
diff --git a/app/views/help/raketasks.html.haml b/app/views/help/raketasks.html.haml
deleted file mode 100644
index 61a3774a1322ebe797294d67041e6d6231f8b839..0000000000000000000000000000000000000000
--- a/app/views/help/raketasks.html.haml
+++ /dev/null
@@ -1,52 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title GitLab Rake Tasks
-
-  %p.slead
-    GitLab provides some specific rake tasks to enable special features or perform maintenance tasks.
-
-  %ul.nav.nav-tabs.log-tabs
-    %li.active
-      = link_to "Maintenance", "#maintenance", 'data-toggle' => 'tab'
-    %li
-      = link_to "User Management", "#user_management", 'data-toggle' => 'tab'
-    %li
-      = link_to "Backup & Restore", "#backup_restore", 'data-toggle' => 'tab'
-    %li
-      = link_to "Cleanup", "#cleanup", 'data-toggle' => 'tab'
-
-  .tab-content
-    .tab-pane.active#maintenance
-      .file-holder
-        .file-title
-          %i.icon-file
-          Maintenance
-        .file-content.wiki
-          = preserve do
-            = markdown File.read(Rails.root.join("doc", "raketasks", "maintenance.md"))
-
-    .tab-pane#user_management
-      .file-holder
-        .file-title
-          %i.icon-file
-          User Management
-        .file-content.wiki
-          = preserve do
-            = markdown File.read(Rails.root.join("doc", "raketasks", "user_management.md"))
-
-    .tab-pane#cleanup
-      .file-holder
-        .file-title
-          %i.icon-file
-          Cleanup
-        .file-content.wiki
-          = preserve do
-            = markdown File.read(Rails.root.join("doc", "raketasks", "cleanup.md"))
-
-    .tab-pane#backup_restore
-      .file-holder
-        .file-title
-          %i.icon-file
-          Backup &amp; Restore
-        .file-content.wiki
-          = preserve do
-            = markdown File.read(Rails.root.join("doc", "raketasks", "backup_restore.md"))
diff --git a/app/views/help/security.html.haml b/app/views/help/security.html.haml
deleted file mode 100644
index 72f21e9f634d5ef7b743a7aa6e5e2564acc6240e..0000000000000000000000000000000000000000
--- a/app/views/help/security.html.haml
+++ /dev/null
@@ -1,15 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title Security
-
-  %p.slead
-    If your GitLab instance is visible from the internet chances are it will be 'tested' by bots sooner or later.
-    %br
-    %br
-    %br
-    .file-holder
-      .file-title
-        %i.icon-file
-        Dealing with bruteforcing
-      .file-content.wiki
-        = preserve do
-          = markdown File.read(Rails.root.join("doc", "security", "rack_attack.md"))
diff --git a/app/views/help/show.html.haml b/app/views/help/show.html.haml
index e9fc6163c79df1cdb0752b0282dc16d4167b12d8..67f9cc41cf36510050719ca5d15972c1a9586248 100644
--- a/app/views/help/show.html.haml
+++ b/app/views/help/show.html.haml
@@ -1,3 +1,2 @@
-.col-md-12
-  .documentation
-    = markdown File.read(Rails.root.join('doc', @category, @file + '.md'))
+.documentation.wiki
+  = markdown File.read(Rails.root.join('doc', @category, @file + '.md'))
diff --git a/app/views/help/ssh.html.haml b/app/views/help/ssh.html.haml
deleted file mode 100644
index 75419c3dd0132db39a2f1bf5e87e6127799f38dd..0000000000000000000000000000000000000000
--- a/app/views/help/ssh.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title SSH Keys 
-
-  .help_body
-    = preserve do
-      = markdown File.read(Rails.root.join("doc", "ssh", "ssh.md")).gsub("$your_email", current_user.email)
diff --git a/app/views/help/system_hooks.html.haml b/app/views/help/system_hooks.html.haml
deleted file mode 100644
index e24f566121d3b223cb141ab1a0e68de16f7ba335..0000000000000000000000000000000000000000
--- a/app/views/help/system_hooks.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title System hooks 
-
-  .help_body
-    = preserve do
-      = markdown File.read(Rails.root.join("doc", "system_hooks", "system_hooks.md"))
diff --git a/app/views/help/web_hooks.html.haml b/app/views/help/web_hooks.html.haml
deleted file mode 100644
index 9e2b54ab6ecdd15d3635982d4a4e9bdc8b656e05..0000000000000000000000000000000000000000
--- a/app/views/help/web_hooks.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title Project web hooks 
-
-  .help_body
-    = preserve do
-      = markdown File.read(Rails.root.join("doc", "web_hooks", "web_hooks.md"))
diff --git a/app/views/help/workflow.html.haml b/app/views/help/workflow.html.haml
deleted file mode 100644
index 47de4ad796cdd5c6dd4b4a6dc90a7d4adb5ca584..0000000000000000000000000000000000000000
--- a/app/views/help/workflow.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-= render layout: 'help/layout' do
-  %h3.page-title Workflow 
-
-  .help_body
-    = preserve do
-      = markdown File.read(Rails.root.join("doc", "workflow", "workflow.md"))