aboutsummaryrefslogtreecommitdiff
path: root/template.html
blob: 54c5787121d6b29c842be113896078c26b727812 (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
<!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$
    $ifdef(title)$
    <title>$title.escapehtml$</title>
    $endif$
    $htmlheader$
  </head>
  <body>
    <nav>
      <a href="/">home</a>
      /
      <a href=".." id="go-up">go up</a>
    </nav>
    <article>$body$</article>
  </body>
</html>