diff options
author | Bruno Albuquerque <bga@bug-br.org.br> | 2014-01-20 05:45:17 -0500 |
---|---|---|
committer | Bruno Albuquerque <bga@bug-br.org.br> | 2014-01-20 05:45:17 -0500 |
commit | b75401d5910af3744596d54dba36ba4de87aae4e (patch) | |
tree | e34f6810222c0fc5678165fcde3f1a3c9f1b213e /app | |
parent | ee3046f9a9f496b84b6b1e5e0d17dc69cecc72ff (diff) | |
download | gitlab-ce-b75401d5910af3744596d54dba36ba4de87aae4e.tar.gz |
Move Go specific meta tag after the atom feed code.
Diffstat (limited to 'app')
-rw-r--r-- | app/views/layouts/_head.html.haml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/layouts/_head.html.haml b/app/views/layouts/_head.html.haml index 97f7e343fad..2fe31486608 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"} + |