2016-06-15 10:31:41 -04:00
|
|
|
- @no_container = true
|
2015-12-02 07:59:42 -05:00
|
|
|
- page_title "Pages", "Wiki"
|
2015-09-17 06:16:24 -04:00
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
= render 'nav'
|
2016-02-07 11:57:28 -05:00
|
|
|
|
2016-06-30 09:01:26 -04:00
|
|
|
%div{ class: container_class }
|
2016-06-15 10:31:41 -04:00
|
|
|
%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'
|