mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 22:20:05 +00:00
30 lines
No EOL
984 B
Smarty
30 lines
No EOL
984 B
Smarty
Begin
|
|
{% macro greetings(to, from=simple.name, name2="guest") %}
|
|
Greetings to {{ to }} from {{ from }}. Howdy, {% if name2 == "guest" %}anonymous guest{% else %}{{ name2 }}{% endif %}!
|
|
{% endmacro %}
|
|
{{ greetings() }}
|
|
{{ greetings(10) }}
|
|
{{ greetings("john") }}
|
|
{{ greetings("john", "michelle") }}
|
|
{{ greetings("john", "michelle", "johann") }}
|
|
{{ greetings("john", "michelle", "johann", "foobar") }}
|
|
|
|
{% macro test2(loop, value) %}map[{{ loop.Counter0 }}] = {{ value }}{% endmacro %}
|
|
{% for item in simple.misc_list %}
|
|
{{ test2(forloop, item) }}{% endfor %}
|
|
|
|
issue #39 (deactivate auto-escape of macros)
|
|
{% macro html_test(name) %}
|
|
<p>Hello {{ name }}.</p>
|
|
{% endmacro %}
|
|
{{ html_test("Max") }}
|
|
|
|
Importing macros
|
|
{% import "macro.helper" imported_macro, imported_macro as renamed_macro, imported_macro as html_test %}
|
|
{{ imported_macro("User1") }}
|
|
{{ renamed_macro("User2") }}
|
|
{{ html_test("Max") }}
|
|
|
|
Chaining macros{% import "macro2.helper" greeter_macro %}
|
|
{{ greeter_macro() }}
|
|
End |