2 2c02675e 2022-12-14 op #include <stdlib.h>
4 2c02675e 2022-12-14 op #include "tmpl.h"
6 2c02675e 2022-12-14 op int base(struct template *, const char *);
9 2c02675e 2022-12-14 op {{ define base(struct template *tp, const char *title) }}
10 2c02675e 2022-12-14 op {! char *foo = NULL; !}
11 2c02675e 2022-12-14 op <!doctype html>
14 2c02675e 2022-12-14 op <title>{{ title }}</title>
16 2c02675e 2022-12-14 op <body> {! /* TODO: frobnicate this line! */ !}
17 2c02675e 2022-12-14 op <h1>{{ title }}</h1>
19 2c02675e 2022-12-14 op {{ "other stuff" }}
23 2c02675e 2022-12-14 op {! free(foo); !}