BigW Consortium Gitlab

pages.html.haml 410 Bytes
Newer Older
Douwe Maan committed
1
- page_title "Pages", "Wiki"
2 3
= render "header_title"

4
= render 'nav'
5

Dmitriy Zaporozhets committed
6
%ul.content-list
7 8
  - @wiki_pages.each do |wiki_page|
    %li
9 10 11 12
      = 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)}
13
= paginate @wiki_pages, theme: 'gitlab'