{% if not is_j2_popup %}
{{ header }}
<div id="container" class="container j-container">
  <ul class="breadcrumb">
    {% for breadcrumb in breadcrumbs %}
      <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="{{ breadcrumb.href }}" itemprop="url"><span itemprop="title">{{ breadcrumb.text }}</span></a></li>
    {% endfor %}
  </ul>
  <div class="row">{{ column_left }}{{ column_right }}
    {% if column_left and column_right %}
      {% set class = 'col-sm-6' %}
    {% elseif column_left or column_right %}
      {% set class = 'col-sm-9' %}
    {% else %}
      {% set class = 'col-sm-12' %}
    {% endif %}
    <div id="content" class="{{ class }} contact-page">
      <h1 class="heading-title">{{ heading_title }}</h1>
      {{ content_top }}
      <h2 class="secondary-title">{{ text_location }}</h2>
      <div class="panel panel-default">
        <div class="panel-body">
          <div class="row">
            {% if image %}
              <div class="col-sm-3"><img src="{{ image }}" alt="{{ store }}" title="{{ store }}" class="img-thumbnail"/></div>
            {% endif %}
            <div class="col-sm-3"><strong>{{ store }}</strong><br/>
              <address>
                {{ address }}
              </address>
              {% if geocode %}
                <a href="https://maps.google.com/maps?q={{ geocode|url_encode }}&hl={{ geocode_hl }}&t=m&z=15" target="_blank" class="btn btn-info"><i class="fa fa-map-marker"></i> {{ button_map }}</a>
              {% endif %}
            </div>
            <div class="col-sm-3"><strong>{{ text_telephone }}</strong><br>
              {{ telephone }}<br/>
              <br/>
              {% if fax %}
                <strong>{{ text_fax }}</strong><br>
                {{ fax }}
              {% endif %}
            </div>
            <div class="col-sm-3">
              {% if open %}
                <strong>{{ text_open }}</strong><br/>
                {{ open }}<br/>
                <br/>
              {% endif %}
              {% if comment %}
                <strong>{{ text_comment }}</strong><br/>
                {{ comment }}
              {% endif %}
            </div>
          </div>
        </div>
      </div>
      {% if locations %}
        <h3>{{ text_store }}</h3>
        <div class="panel-group" id="accordion">
          {% for location in locations %}
            <div class="panel panel-default">
              <div class="panel-heading">
                <h4 class="panel-title"><a href="#collapse-location{{ location.location_id }}" class="accordion-toggle" data-toggle="collapse" data-parent="#accordion">{{ location.name }} <i class="fa fa-caret-down"></i></a></h4>
              </div>
              <div class="panel-collapse collapse" id="collapse-location{{ location.location_id }}">
                <div class="panel-body">
                  <div class="row">
                    {% if location.image %}
                      <div class="col-sm-3"><img src="{{ location.image }}" alt="{{ location.name }}" title="{{ location.name }}" class="img-thumbnail"/></div>
                    {% endif %}
                    <div class="col-sm-3"><strong>{{ location.name }}</strong><br/>
                      <address>
                        {{ location.address }}
                      </address>
                      {% if location.geocode %}
                        <a href="https://maps.google.com/maps?q={{ location.geocode|url_encode }}&hl={{ geocode_hl }}&t=m&z=15" target="_blank" class="btn btn-info"><i class="fa fa-map-marker"></i> {{ button_map }}</a>
                      {% endif %}
                    </div>
                    <div class="col-sm-3"><strong>{{ text_telephone }}</strong><br>
                      {{ location.telephone }}<br/>
                      <br/>
                      {% if location.fax %}
                        <strong>{{ text_fax }}</strong><br>
                        {{ location.fax }}
                      {% endif %}
                    </div>
                    <div class="col-sm-3">
                      {% if location.open %}
                        <strong>{{ text_open }}</strong><br/>
                        {{ location.open }}<br/>
                        <br/>
                      {% endif %}
                      {% if location.comment %}
                        <strong>{{ text_comment }}</strong><br/>
                        {{ location.comment }}
                      {% endif %}
                    </div>
                  </div>
                </div>
              </div>
            </div>
          {% endfor %}
        </div>
      {% endif %}
      {% endif %}
      <form action="{{ action }}" method="post" enctype="multipart/form-data" class="form-horizontal">
        <fieldset>
          {% if product_id %}
            <input type="hidden" name="product_id" value="{{ product_id }}"/>
          {% endif %}
          {% if not is_j2_popup %}
            <h2 class="secondary-title">{{ text_contact }}</h2>
          {% endif %}
          <div class="form-group required">
            <label class="col-sm-2 control-label" for="input-name">{{ entry_name }}</label>
            <div class="col-sm-10">
              <input type="text" name="name" value="{{ name }}" id="input-name" class="form-control"/>
              {% if error_name %}
                <div class="text-danger">{{ error_name }}</div>
              {% endif %}
            </div>
          </div>
          <div class="form-group required">
            <label class="col-sm-2 control-label" for="input-email">{{ entry_email }}</label>
            <div class="col-sm-10">
              <input type="text" name="email" value="{{ email }}" id="input-email" class="form-control"/>
              {% if error_email %}
                <div class="text-danger">{{ error_email }}</div>
              {% endif %}
            </div>
          </div>
          <div class="form-group required">
            <label class="col-sm-2 control-label" for="input-enquiry">{{ entry_enquiry }}</label>
            <div class="col-sm-10">
              <textarea name="enquiry" rows="10" id="input-enquiry" class="form-control">{{ enquiry }}</textarea>
              {% if error_enquiry %}
                <div class="text-danger">{{ error_enquiry }}</div>
              {% endif %}
            </div>
          </div>
          {{ captcha }}
          {% if is_j2_popup and journal2.settings.get('popup_privacy_information') %}
            <div class="form-group required">
              <div class="checkbox">
                <label>
                  <input type="checkbox" name="agree" value="1"/>
                  {{ journal2.settings.get('popup_privacy_information.information_text') }}
                </label>
              </div>
            </div>
          {% endif %}
        </fieldset>
        {% if not is_j2_popup %}
          {% if journal2.settings.get('popup_privacy_information') %}
            <div class="buttons">
              <div class="pull-right">{{ journal2.settings.get('popup_privacy_information.information_text') }}
                <input type="checkbox" name="agree" value="1"/>
                &nbsp;
                <input type="submit" value="{{ button_submit }}" class="btn btn-primary button"/>
              </div>
            </div>
          {% else %}
            <div class="buttons">
              <div class="pull-right">
                <input type="submit" value="{{ button_submit }}" class="btn btn-primary button"/>
              </div>
            </div>
          {% endif %}
        {% endif %}
      </form>
      {% if not is_j2_popup %}
      {{ content_bottom }}</div>
  </div>
</div>
{{ footer }}
{% endif %}
