A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
443 B

  1. {% macro input_field(name, value='', type='text') -%}
  2. <input type="{{ type }}" value="{{ value|e }}" name="{{ name }}">
  3. {%- endmacro %}
  4. {% macro textarea(name, value='', rows=10, cols=40) -%}
  5. <textarea name="{{ name }}" rows="{{ rows }}" cols="{{ cols }}">{{
  6. value|e }}</textarea>
  7. {%- endmacro %}
  8. {% macro form(action='', method='post') -%}
  9. <form action="{{ action|e }}" method="{{ method }}">{{ caller() }}</form>
  10. {%- endmacro %}