summary refs log tree commit diff
path: root/views/page.tt
blob: 207e025a5b00937b6fba5d17f1fe98587e9bf160 (plain) (blame)
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
<div id="wiki-wrapper" class="page">

  <div id="head">
    <h1><% title %></h1>
    <ul class="actions">
      <li class="minibutton">
        <a href="#" id="minibutton-new-page">New Page</a>
      </li>
      <li class="minibutton">
        <a href="/edit/<% title %>" class="action-edit-page">Edit Page</a>
      </li>
      <li class="minibutton">
        <a href="/history/<% title %>" class="action-page-history">Page History</a>
      </li>
    </ul>
  </div>

  <div id="wiki-content">
    <div id="wiki-body">
      <% content %>
    </div>
  </div>

  <div id="footer">
    <p id="last-edit">Last edited by <b><% author %></b>, <% date %></p>
  </div>
</div>