aboutsummaryrefslogtreecommitdiff
path: root/template.html
blob: ea53fa85080671c35a3657b9a0ac6b91f3cac7bb (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
32
33
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8"> 
    <meta name="viewport" content="width=device-width,initial-scale=1">
    $ifdef(date)$
    <meta name="date" content="$date.escapehtmlattr$">
    $endif$
    <link rel="stylesheet" href="/stylesheet.css">
    $for(css.split)$
    <link rel="stylesheet" href="$this.escapehtmlurl$">
    $endfor$
    $for(javascript.split)$
    <script src="$this.escapehtmlurl$"></script>
    $endfor$
    <title>$ifdef(title)$$title.escapehtml$$endif$</title>
    $htmlheader$
  </head>
  <body>
    <nav>
      <a href="/">home</a>
      /
      <a href=".." id="go-up">go up</a>
    </nav>

    <article>$body$</article>
    <hr>
    <footer>
      <address><a href="contact.html">contact</a></address>
      <br>
    </footer>
  </body>
</html>