Sha256: 447d4edd2ae075a53dfa940459f830831968c0b6d3bdb28677ed19d5d54c842c

Contents?: true

Size: 751 Bytes

Versions: 10

Compression:

Stored size: 751 Bytes

Contents

{% if contact.sent %}

<p>Your message has been sent and we&#8217;ll get back to you soon.</p>      

{% else %}

<form method="post" action="/contact">
  <ul>
    <li>
      <label for="name">Name</label>
      {{ contact | contact_input: 'name' }}
    </li>
    <li>
      <label for="email">Email</label>
      {{ contact | contact_input: 'email' }}
    </li>
    <li>
      <label for="subject">Subject</label>
      {{ contact | contact_input: 'subject' }}
    </li>
    <li>
      <label for="message">Message</label>
      {{ contact | contact_input: 'message' }}
    </li>
    <li>
      <button type="submit" name="submit" title="Send us an email">Send</button>
      <div>{{ contact.recaptcha }}</div>
    </li>
  </ul>
</form>

{% endif %}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
dugway-1.0.10 spec/fixtures/theme/contact.html
dugway-1.0.9 spec/fixtures/theme/contact.html
dugway-1.0.8 spec/fixtures/theme/contact.html
dugway-1.0.7 spec/fixtures/theme/contact.html
dugway-1.0.6 spec/fixtures/theme/contact.html
dugway-1.0.5 spec/fixtures/theme/contact.html
dugway-1.0.4 spec/fixtures/theme/contact.html
dugway-1.0.3 spec/fixtures/theme/contact.html
dugway-1.0.2 spec/fixtures/theme/contact.html
dugway-1.0.1 spec/fixtures/theme/contact.html