Sha256: 6c68db234e475508fce1cebd43c3c734d82a0ffa029ba4945447c0497a540b60

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

{% if item.tag %}

  {% assign ItemTags = item.tag | prepend : 'tag-' | split : ' ' | join : ' tag-' %}
  
{% endif %}

{% if include.context == "legend" %}

{% else %}

  <p class="block form-row text-row">

    {% assign parent = item.text | replace: ' ','-' %}
    {% assign unique = PageChapter | append : '-' | append : PageTitle %}
    {% assign for = unique | append : '-' | append : parent | downcase %}

    {% include {{ LoopForm | append : 'label.liquid' }}
                  for   = for
                  title = item.text
                  small = item.small
                  class = "form-label" %}

    <span class="block text-input {% if item.tag %}{{ ItemTags }}{% endif %}">

      <span class="wrap text-input">

        {% include {{ LoopForm | append : 'input.liquid' }}
                      type  = "text"
                      id    = for
                      name  = "name"
                      class = "text-input" %}
  
      </span>
  
      {% if item.inline %}
  
        <small>{{ item.inline }}</small>
  
      {% endif %}

    </span>

  </p>

{% endif %}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
futuro-1.0.4 _includes/html/page/content/loop/form/text.liquid