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

pages.html.haml « wikis « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f35649d031cf79bfe53b12b0248970981d1afaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- add_to_breadcrumbs _('Wiki'), wiki_path(@wiki)
- breadcrumb_title s_("Wiki|Pages")
- page_title s_("Wiki|Pages"), _("Wiki")
- add_page_specific_style 'page_bundles/wiki'

.wiki-page-header.top-area.flex-column.flex-lg-row
  %h1.page-title.gl-font-size-h-display.gl-flex-grow-1
    = s_("Wiki|Wiki Pages")

  .nav-controls.pb-md-3.pb-lg-0
    = link_to wiki_path(@wiki, action: :git_access), class: 'btn gl-button' do
      = sprite_icon('download')
      = _("Clone repository")

    .dropdown.inline.wiki-sort-dropdown
      .btn-group{ role: 'group' }
        = wiki_sort_controls(@wiki, params[:direction])

%ul.wiki-pages-list.content-list
  - @wiki_entries.each do |entry|
    = render partial: entry.to_partial_path, object: entry, locals: { context: 'pages' }

= paginate @wiki_pages, theme: 'gitlab'