Sha256: 52409926ab8e6170eb1817e6fd19dbb093251c47c5c827ac172a44c079b9481f

Contents?: true

Size: 1022 Bytes

Versions: 1

Compression:

Stored size: 1022 Bytes

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="wrap text-input {% if item.tag %}{{ ItemTags }}{% endif %}">

      {% include {{ LoopForm | append : 'input.liquid' }}
                    type  = "text"
                    id    = for
                    name  = "name"
                    class = "text-input" %}

      {% 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.3 _includes/html/page/content/loop/form/text.liquid