aboutsummaryrefslogtreecommitdiff
path: root/data/themes/default/templates/page.html
blob: 5b6450969819ec2f4570f5346c78c9647a7a6fa6 (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
<!DOCTYPE html>
<html lang='en-US'>
  <head>
    <meta charset="utf-8"/>
    <title>%{
      name | h
    }</title>

    %{styles}
  </head>

  <body>
    <div class='post'>
      <b>page: %{name | h}</b><br/>
      <b>
        by <span class='user'>%{user_name | h}</span>
        on <span class='date'>%{posted_at_text | h}</span>
      </b><br/><br/>
      %{body}
    </div>
  </body>

  %{scripts}
</html>