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

pages.html.haml « wikis « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94267b6e0cf89dd2d00bf856249f735ee5e8037c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- @no_container = true
- add_to_breadcrumbs "Wiki", project_wiki_path(@project, :home)
- breadcrumb_title s_("Wiki|Pages")
- page_title s_("Wiki|Pages"), _("Wiki")

%div{ class: container_class }
  .wiki-page-header

    .nav-text
      %h2.wiki-page-title
        = s_("Wiki|Wiki Pages")

    .nav-controls
      = link_to project_wikis_git_access_path(@project), class: 'btn' do
        = icon('cloud-download')
        = _("Clone repository")

  %ul.wiki-pages-list.content-list
    = render @wiki_entries, context: 'pages'

  = paginate @wiki_pages, theme: 'gitlab'