1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00

tabler v1

This commit is contained in:
chomik
2019-03-12 22:09:15 +01:00
parent 79f7d92872
commit ab3aec2eeb
3320 changed files with 148049 additions and 207078 deletions

View File

@@ -0,0 +1,13 @@
<div class="input-group{% if include.class %} {{ include.class }}{% endif %}">
{% if include.prepend %}
<div class="input-group-prepend">
<span class="input-group-text">{{ include.prepend }}</span>
</div>
{% endif %}
<input type="text" class="form-control"{% if include.placeholder %} placeholder="{{ include.placeholder }}"{% endif %}{% if include.placeholder %} value="{{ include.value }}"{% endif %}>
{% if include.append %}
<div class="input-group-append">
<span class="input-group-text">{{ include.append }}</span>
</div>
{% endif %}
</div>