2 2c02675e 2022-12-14 op #include <stdlib.h>
3 2c02675e 2022-12-14 op #include <string.h>
5 2c02675e 2022-12-14 op #include "tmpl.h"
7 2c02675e 2022-12-14 op int base(struct template *, const char *);
10 2c02675e 2022-12-14 op {{ define base(struct template *tp, const char *title) }}
11 2c02675e 2022-12-14 op {! char *foo = NULL; !}
12 2c02675e 2022-12-14 op <!doctype html>
15 2c02675e 2022-12-14 op <title>{{ title }}</title>
18 2c02675e 2022-12-14 op <h1>{{ title }}</h1>
19 2c02675e 2022-12-14 op {{ if strchr(title, '*') != NULL }}
20 2c02675e 2022-12-14 op <p>"{{ title }}" has a '*' in it</p>
22 2c02675e 2022-12-14 op <p>tautology!</p>
24 2c02675e 2022-12-14 op {{ else if strchr(title, '=') != NULL }}
25 2c02675e 2022-12-14 op <p>"{{ title }}" has a '=' in it!</p>
27 2c02675e 2022-12-14 op <p>"{{ title }}" doesn't have a '*' in it</p>
32 2c02675e 2022-12-14 op {! free(foo); !}