Blame


1 2c02675e 2022-12-14 op {!
2 2c02675e 2022-12-14 op #include <stdlib.h>
3 2c02675e 2022-12-14 op
4 2c02675e 2022-12-14 op #include "tmpl.h"
5 2c02675e 2022-12-14 op
6 2c02675e 2022-12-14 op int base(struct template *, const char *);
7 2c02675e 2022-12-14 op !}
8 2c02675e 2022-12-14 op
9 2c02675e 2022-12-14 op {{ define base(struct template *tp, const char *title) }}
10 2c02675e 2022-12-14 op <!doctype html>
11 2c02675e 2022-12-14 op <html>
12 2c02675e 2022-12-14 op <head>
13 2c02675e 2022-12-14 op <title>{{ title | urlescape }}</title>
14 2c02675e 2022-12-14 op </head>
15 2c02675e 2022-12-14 op <body>
16 2c02675e 2022-12-14 op <h1>{{ title | unsafe }}</h1>
17 2c02675e 2022-12-14 op </body>
18 2c02675e 2022-12-14 op </html>
19 2c02675e 2022-12-14 op {{ end }}