...

Text file src/github.com/noirbizarre/gonja/testData/statements/macro.tpl

Documentation: github.com/noirbizarre/gonja/testData/statements

     1{% macro input(name, value='', type='text', size=20) -%}
     2    <input type="{{ type }}" name="{{ name }}" value="{{
     3        value|e }}" size="{{ size }}">
     4{%- endmacro -%}
     5<p>{{ input('username') }}</p>
     6<p>{{ input('username', type='password') }}</p>

View as plain text