Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.html.haml « wikis « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 126810811ec7976460c6fd9a90f3429f3746104a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
- page_title @page.title, "Wiki"
= render 'nav'

.gray-content-block
  = render 'main_links'
  %h3.page-title
    = @page.title.capitalize

  .wiki-last-edit-by
    Last edited by #{@page.commit.author.name} #{time_ago_with_tooltip(@page.commit.authored_date)}

- if @page.historical?
  .warning_message
    This is an old version of this page.
    You can view the #{link_to "most recent version", namespace_project_wiki_path(@project.namespace, @project, @page)} or browse the #{link_to "history", namespace_project_wiki_history_path(@project.namespace, @project, @page)}.


.wiki-holder.prepend-top-default
  .wiki
    = preserve do
      = render_wiki_content(@page)

.gray-content-block.footer-block
  .wiki-last-edit-by
    Last edited by #{@page.commit.author.name} #{time_ago_with_tooltip(@page.commit.authored_date)}