-
Notifications
You must be signed in to change notification settings - Fork 0
Examples
Leonard Ramminger edited this page May 14, 2026
·
1 revision
Hello {{ name }}{{ include "partials/header" }}
{{ if enabled }}Enabled{{ else }}Disabled{{ endif }}{{ for item in items }}{{ loop.index }}={{ item }};{{ else }}empty{{ endfor }}{{ fn greet(name) }}Hello {{ name }}{{ endfn }}
{{ greet("Ada") }}{{ fn users() lua:block }}
return { { name = "Ada" }, { name = "Grace" } }
{{ endfn }}
{{ for user in users() }}{{ user.name }};{{ endfor }}{{ __DATE__ }}
{{ __FILENAME__ }}
{{ __UUID__ }}