diff --git a/app/views/layouts/_head.html.haml b/app/views/layouts/_head.html.haml
index 97f7e343fad6cb44c275cb2dd8d8e11c13d8e829..2fe314866081bdb23fe24b610c3127a3bae21a7b 100644
--- a/app/views/layouts/_head.html.haml
+++ b/app/views/layouts/_head.html.haml
@@ -1,10 +1,5 @@
 %head
   %meta{charset: "utf-8"}
-
-  -# Go repository retrieval support.
-  - if controller_name == 'projects' && action_name == 'show'
-    %meta{name: "go-import", content: "#{@project.web_url_without_scheme} git #{@project.web_url}.git"}
-
   %title
     = "#{title} | " if defined?(title)
     GitLab
@@ -25,3 +20,8 @@
         = auto_discovery_link_tag(:atom, project_commits_url(@project, @ref, format: :atom, private_token: current_user.private_token), title: "Recent commits to #{@project.name}:#{@ref}")
       - if current_controller?(:issues)
         = auto_discovery_link_tag(:atom, project_issues_url(@project, :atom, private_token: current_user.private_token), title: "#{@project.name} issues")
+
+  -# Go repository retrieval support.
+  - if controller_name == 'projects' && action_name == 'show'
+    %meta{name: "go-import", content: "#{@project.web_url_without_scheme} git #{@project.web_url}.git"}
+