CShore/demo/demo.templ

13 lines
169 B
Text
Raw Normal View History

2021-05-23 15:19:06 +00:00
{$ char* title, char* name $}
%%
<!DOCTYPE html>
<html>
<head>
<title>{{ "%s", title }}</title>
</head>
<body>
<h1>Hello {{ "%s", name }}!</h1>
</body>
</html>