Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_head.html.haml « layouts « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a0f60d36c26b5f5eb3a02d44a7da39bacaae04b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%head
  %meta{charset: "utf-8"}
  %title
    GitLab
    = " > #{title}" if defined?(title)
  = favicon_link_tag 'favicon.ico'
  = stylesheet_link_tag    "application"
  = javascript_include_tag "application"
  -# Atom feed
  - if controller_name == 'projects' && action_name == 'index'
    = auto_discovery_link_tag :atom, projects_url(:atom, private_token: current_user.private_token), title: "Dashboard feed"
  - if @project && !@project.new_record?
    - if current_controller?(:tree, :commits)
      = 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")
  = csrf_meta_tags