libparcival/demofiles/demo.html.templ

9 lines
191 B
Text
Raw Normal View History

2021-05-21 19:53:34 +00:00
{$ char* title, char** names, size_t no $}
2021-06-08 17:30:25 +00:00
{# extends("layout.html.templ", title) #}
2021-05-21 19:53:34 +00:00
%%
2021-06-08 17:36:00 +00:00
2021-05-21 19:53:34 +00:00
{% for(size_t i = 0; i < no; i++) %}
{# render("greeting.templ", names[i]) #}<br />
2021-05-21 19:53:34 +00:00
{% end %}