gitlab-org--gitlab-foss/app/views/projects/wikis/pages.html.haml

14 lines
434 B
Text
Raw Normal View History

2015-04-30 13:06:18 -04:00
- page_title "All Pages", "Wiki"
= render 'nav'
%h3.page-title
All Pages
2013-08-16 09:59:26 -04:00
%ul.bordered-list
- @wiki_pages.each do |wiki_page|
%li
%h4
= link_to wiki_page.title, namespace_project_wiki_path(@project.namespace, @project, wiki_page)
2013-08-16 09:59:26 -04:00
%small (#{wiki_page.format})
.pull-right
%small Last edited #{time_ago_with_tooltip(wiki_page.commit.authored_date)}
= paginate @wiki_pages, theme: 'gitlab'