aboutsummaryrefslogtreecommitdiff
path: root/template.html
blob: 4b5a719b09103899befdb7cef7939571555b33fc (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
<!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$
    <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>
    $for(javascript.split)$
    <script src="$this.escapehtmlurl$"></script>
    $endfor$
  </body>
</html>