summaryrefslogtreecommitdiff
path: root/app/views/projects/wikis/pages.html.haml
blob: e843b1fb3d36480932f1cb70a2a6a669885dbfbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- @no_container = true
- page_title "Pages", "Wiki"

%div{ class: container_class }
  .top-area
    %button.btn.btn-default.sidebar-toggle.js-sidebar-wiki-toggle{ role: "button", type: "button" }
      = icon('angle-double-left')

    .nav-text
      %strong
        Wiki Pages

  %ul.content-list
    - @wiki_pages.each do |wiki_page|
      %li
        = link_to wiki_page.title, namespace_project_wiki_path(@project.namespace, @project, wiki_page)
        %small (#{wiki_page.format})
        .pull-right
          %small Last edited #{time_ago_with_tooltip(wiki_page.commit.authored_date)}
  = paginate @wiki_pages, theme: 'gitlab'

= render 'sidebar'