step/examples/cookie/index.step

11 lines
262 B
Plaintext

<!DOCTYPE html>
<html>
<head>
</head>
<body>
{{$counter := getCookie .Data.Req "counter" | atoi | add 1}}
{{toString $counter | setCookie .Data.Res "counter"}}
<p>You have refreshed this page {{$counter}} time{{if gt $counter 1}}s{{end}}.</p>
</body>
</html>