Sha256: dc7ec27f4037f2caf8d08a2c3c5b059ec703a5f827c4c5daaad049088fcc9bf7
Contents?: true
Size: 927 Bytes
Versions: 7
Compression:
Stored size: 927 Bytes
Contents
{%- assign name = include.field[0] -%} {%- assign id = include.field[1].id | default: name -%} {%- assign label = include.field[1]['path'].label[site.locale] -%} {%- assign help = include.field[1]['path'].help[site.locale] -%} {%- assign autocomplete = include.field[1].autocomplete -%} <div class="custom-file"> <input {% if help %} aria-describedby="help-{{ id }}" {% endif %} {% if include.field[1].required %} required {% endif %} type="{{ include.field[1].type }}" name="{{ name }}[path]" id="{{ id }}_path" {% if autocomplete %} autocomplete="{{ autocomplete }}" {% endif %} class="custom-file-input" /> <label for="{{ id }}_path" class="custom-file-label"> {{ label }} {% if include.field[1].required %}*{% endif %} </label> {%- if help -%} <small id="help-{{ id }}" class="form-text"> {{ help }} </small> {%- endif -%} </div>
Version data entries
7 entries across 7 versions & 2 rubygems