CShore/demo/demo.templ
2021-05-23 17:19:06 +02:00

12 lines
169 B
Text

{$ char* title, char* name $}
%%
<!DOCTYPE html>
<html>
<head>
<title>{{ "%s", title }}</title>
</head>
<body>
<h1>Hello {{ "%s", name }}!</h1>
</body>
</html>