Sha256: cbdf3da9c8f2c7323d4f1cb683b3d77546db3e7d8cafa86fc306a8516e309e19

Contents?: true

Size: 1.26 KB

Versions: 8

Compression:

Stored size: 1.26 KB

Contents

---
layout: default
---

<section>
  <header>
    <h1>{{ page.title }}</h1>
  </header>

  <div class="content">
    {{ content }}
  </div>

  <div id="user" data-controller="cart-contact">
    <h2>{{ page.user }}</h2>

    <form data-cart-contact-target="form">
      {% for field in site.data.forms.user %}
        {% assign template = field[1].type | append: '.html' %}
        {% include {{ template }} field=field form='user' %}
      {% endfor %}
    </form>
  </div>

  <div
    id="shipping-address"
    class="mt-3"
    data-controller="cart-shipping"
    data-scroll-to="cart-shipping"
    data-cart-shipping-next="{{ site.payment.url }}"
    data-cart-shipping-template="assets/templates/shipping_methods.html">

    <h2>{{ page.shipping_address }}</h2>

    <form
      data-cart-shipping-target="form"
      data-action="cart-shipping#rates">
      {% for field in site.data.forms.shipping_address %}
        {% assign template = field[1].type | append: '.html' %}
        {% include {{ template }} field=field %}
      {% endfor %}
    </form>

    <div id="cart-shipping">
      <h2 class="mt-3">{{ page.shipping_methods }}</h2>

      <div data-cart-shipping-target="methods">
        {{ page.shipping_methods_help | markdownify }}
      </div>
    </div>
  </div>
</section>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
editorial-autogestiva-jekyll-theme-0.5.0rc8 _layouts/shipment.html
editorial-autogestiva-jekyll-theme-0.5.0rc7 _layouts/shipment.html
editorial-autogestiva-jekyll-theme-0.5.0rc6 _layouts/shipment.html
editorial-autogestiva-jekyll-theme-0.5.0rc5 _layouts/shipment.html
editorial-autogestiva-jekyll-theme-0.5.0rc4 _layouts/shipment.html
editorial-autogestiva-jekyll-theme-0.5.0rc3 _layouts/shipment.html
editorial-autogestiva-jekyll-theme-0.5.0rc2 _layouts/shipment.html
editorial-autogestiva-jekyll-theme-0.5.0rc1 _layouts/shipment.html