input.template.html 326 B

123456789101112
  1. {% include "lib/macros.html" -%}
  2. {% extends "api/directive.template.html" %}
  3. {% block usage %}
  4. <h2>Usage</h2>
  5. {% code %}
  6. <input type="{$ doc.inputType $}"
  7. {%- for param in doc.params %}
  8. {$ directiveParam(param.alias or param.name, param.type, '="', '"') $}
  9. {%- endfor %}>
  10. {% endcode %}
  11. {% endblock %}