Blame


1 014c66b6 2023-06-25 op {!
2 014c66b6 2023-06-25 op #include <stdlib.h>
3 014c66b6 2023-06-25 op
4 014c66b6 2023-06-25 op #include "tmpl.h"
5 014c66b6 2023-06-25 op !}
6 014c66b6 2023-06-25 op
7 014c66b6 2023-06-25 op {{ define base(struct template *tp, const char *title) }}
8 014c66b6 2023-06-25 op {! char *foo = NULL; !}
9 014c66b6 2023-06-25 op <!doctype html>
10 014c66b6 2023-06-25 op <html>
11 014c66b6 2023-06-25 op <head>
12 014c66b6 2023-06-25 op <title>{{ title }}</title>
13 014c66b6 2023-06-25 op </head>
14 014c66b6 2023-06-25 op <body> {! /* TODO: frobnicate this line! */ !}
15 014c66b6 2023-06-25 op <h1>{{ title }}</h1>
16 014c66b6 2023-06-25 op {{ " | " }}
17 014c66b6 2023-06-25 op {{ "other stuff" }}
18 014c66b6 2023-06-25 op </body>
19 014c66b6 2023-06-25 op </html>
20 014c66b6 2023-06-25 op {{ finally }}
21 014c66b6 2023-06-25 op {! free(foo); !}
22 014c66b6 2023-06-25 op {{ end }}