Blame


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