libparcival/demofiles/demo.c

16 lines
193 B
C
Raw Permalink Normal View History

2021-05-21 19:53:34 +00:00
#include <stdio.h>
#include <templates.h>
int main() {
char *names[] = {
"foo",
"bar",
"foobar"
};
renderTemplate("demo.html.templ", stdout, "User-List", names, 3);
2021-05-21 19:53:34 +00:00
return 0;
}