Skip to content

Instantly share code, notes, and snippets.

@tapvt
Created June 4, 2013 16:57
Show Gist options
  • Save tapvt/5707599 to your computer and use it in GitHub Desktop.
Save tapvt/5707599 to your computer and use it in GitHub Desktop.
twig/swig bootstrap basic form element
{% macro input type name label value error %}
<div class="control-group">
<label class="control-label" for="{{ name }}">{{ label }}</label>
<div class="controls">
<input type="{{ type }}" name="{{ name }}" id="{{ id }}" value="{{ value }}"{% if error %} class="error"{% endif %}>
</div>
</div>
{% endmacro %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment