summaryrefslogtreecommitdiff
path: root/app/views/layouts/service_desk.html.haml
blob: 26d15a74403218c40618f7611a22e6dedebc1b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%html{ lang: "en" }
  %head
    %meta{ content: "text/html; charset=utf-8", "http-equiv" => "Content-Type" }
    -# haml-lint:disable NoPlainNodes
    %title
      GitLab
    -# haml-lint:enable NoPlainNodes
    = stylesheet_link_tag 'notify'
    = yield :head
  %body
    .content
      = yield
    .footer{ style: "margin-top: 10px;" }
    %p
      —
      %br
      = link_to "Unsubscribe", @unsubscribe_url

      -# EE-specific start
      - if Gitlab::CurrentSettings.email_additional_text.present?
        %br
        %br
          = Gitlab::Utils.nlbr(Gitlab::CurrentSettings.email_additional_text)
      -# EE-specific end