2016-06-22 15:30:34 +05:30
|
|
|
- @no_container = true
|
2015-12-23 02:04:40 +05:30
|
|
|
- page_title "Pages", "Wiki"
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
= render 'nav'
|
2016-04-02 18:10:28 +05:30
|
|
|
|
2016-06-22 15:30:34 +05:30
|
|
|
%div{ class: (container_class) }
|
|
|
|
%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'
|