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

not_found.html.haml « errors « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54291cd9abc47dc869e4ab8bdfa72d95acdeb281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- content_for(:title, 'Not Found')
= image_tag('illustrations/error-404.svg', alt: '404', lazy: false)
.container
  %h3
    = s_('404|Page Not Found')
  %p
    = s_("404|Make sure the address is correct and the page hasn't moved.")
  %p
    = s_('404|Please contact your GitLab administrator if you think this is a mistake.')
  .action-container
    = form_tag search_path, method: :get, class: 'form-inline-flex' do |f|
      .field
        = search_field_tag :search, '', placeholder: _('Search for projects, issues, etc.'), class: 'form-control'
      = render Pajamas::ButtonComponent.new(variant: :confirm, size: :small, type: :submit) do
        = _('Search')
= render 'errors/footer'