summaryrefslogtreecommitdiff
path: root/examples/templates/page.liquid
blob: e90f7ceb7ea17deb5014c3fbb298a2deee06e5f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="../css/main.css">
  </head>
  <body>
    <div class="container">
      <h1>{{page.title | capitalize}}</h1>
      <p>
        {{page.body}}
      </p>
    </div>
  </body>
</html>