{{#unless orderLineOnly}}
    {{#if charity}}
            {{#unless basket}}
                <h3 class="heading-3">{{header}}</h3>
            {{/unless}}
            <div class="checkout-info-wrap checkout-order">
                <div class="checkout-order__charity">
                    <div class="checkout-order__img">
                        <a class="subtitle-link" href="{{subLink}}">
                            <img class="image" src="{{img}}" alt="{{title}}" title="{{title}}">
                        </a>
                    </div>
                    <div class="checkout-order__info-wrap">
                        <div class="title-wrap">
                            <span class="title">{{title}}</span>
                            <span><a class="subtitle-link" href="{{subLink}}">Find out more</a> about our charity partnership with YoungMinds</span>
                        </div>

                        <div class="price-wrap">
                            {{#unless basket}}
                            <span>{{total}}</span>
                            <span>{{price}}</span>
                            {{else}}
                                <span class="price-wrap__donation">{{price}}</span>
                                <button class="btn order-item__action-btn-remove" data-action="remove">
                                    <span class="btn__text">
                                      <i class="fas fa-trash"></i>
                                    </span>
                                </button>
                                <input type="hidden" name="productCode" value="1234567">
                                {{> checkbox id="donation"}}
                            {{/unless}}
                        </div>
                    </div>
                </div>
            </div>
    {{else}}
        <h3 class="heading-3">{{header}}</h3>
        {{#if clickCollect}}
        <div class="click-collect-message">
            <i class="fas fa-info-circle icon-info"></i>
            <span>
                Click & Collect - please wait for your SMS confirmation that your order is ready to collect. Your SMS may contain a collection PIN, depending on the store you are collecting from. During busy times your Click & Collect order may not be ready within 1 hour, particularly if you place your order outside of store trading hours.<br /><br />
                To avoid an unnecessary journey or long wait at the store, please wait for your SMS confirmation that your order is ready to collect.
            </span>
        </div>
        {{/if}}


        <div class="checkout-info-wrap checkout-order">
            {{> checkout-order-block noCollapsed=true}}

            <div class="order-block__price">
            <span>{{type}}</span>
            <span>{{price}}</span>
            </div>
        </div>

        <div class="total-delivery__wrap">
            <span>Delivery total:</span>
            <span>{{deliveryTotal}}</span>
        </div>
    {{/if}}
{{else}}
    <div class="checkout-info-wrap checkout-order">
        {{> checkout-order-block noCollapsed=true}}
    </div>
{{/unless}}
