summaryrefslogtreecommitdiff
path: root/app/views/projects/wikis/show.html.haml
blob: f003ff6b63fff987c5b6714b611db62f15713785 (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
27
28
29
30
31
- @content_class = "limit-container-width limit-container-width-sm" unless fluid_layout
- page_title @page.title.capitalize, "Wiki"

.wiki-page-header.has-sidebar-toggle
  %button.btn.btn-default.sidebar-toggle.js-sidebar-wiki-toggle{ role: "button", type: "button" }
    = icon('angle-double-left')

  .wiki-breadcrumb
    %span= breadcrumb(@page.slug)

  .nav-text
    %h2.wiki-page-title= @page.title.capitalize
    %span.wiki-last-edit-by
      Last edited by
      %strong
        #{@page.commit.author.name}
      #{time_ago_with_tooltip(@page.commit.authored_date)}

  .nav-controls
    = render 'main_links'

- 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.append-bottom-default
  .wiki
    = render_wiki_content(@page)

= render 'sidebar'