-
Notifications
You must be signed in to change notification settings - Fork 0
/
productos-por-pedido.html
51 lines (51 loc) · 2.2 KB
/
productos-por-pedido.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: page
lang: es
alt: /products-upon-request/
permalink: /productos-por-pedido/
title: Productos por pedido
description: Estos productos son disponibles por pedido. Averiguar por su disponibilidad y haga su pedido con anticipación de su visita.
weight: 11
headerimg: fresh-products-upon-request.jpg
header_class: largest
custombg: true
---
{% assign translation = site.data.translations[page.lang] %}
<div class="row">
<div class="col-md-4 flowers-bg">
<h3>Llama para hacer tu pedido</h3>
<p>
<strong>Teléfono:</strong> 2269-9683<br/>
<strong>Fax:</strong> 2269-8166<br/>
</p>
<h3>Horario de empacadora</h3>
<p><strong>{{ translation.mon }} - {{ translation.thu }}:</strong> 6am - 4pm<br/>
<strong>{{ translation.fri }}:</strong> 6am - 2pm</p>
<p>Los productos marcados con un asterisco<span class="asterisk">*</span> están disponible la mayoría del tiempo pero es mejor pedir en adelanto, de lo contrario, no los tendremos listos y empacados a tiempo.</p>
<!-- <img src="{{ site.data.imagenproductos.url }}" alt="Productos" class="img-responsive"/> -->
</div>
<div class="col-md-8">
<div class="table-responsive">
<table class="table table-bordered table-hover table-condensed table-hover">
<thead>
<tr>
<th>{{ translation.name }}</th>
<th class="text-right">Unidad</th>
<th class="text-right">1/2 Kg</th>
<th class="text-right">1 Kg</th>
</tr>
</thead>
<tbody>
{% for product in site.data.products_upon_request %}
<tr>
<td>{{ product[page.lang] }}{% if product.asterisk == true %}<span class="asterisk">*</span>{% endif %}</td>
<td class="text-right">{% unless product.unit == 'n/a' %}¢{{ product.unit }}{% else %}-{% endunless %}</td>
<td class="text-right">{% unless product.half == 'n/a' %}¢{{ product.half }}{% else %}-{% endunless %}</td>
<td class="text-right">{% unless product.full == 'n/a' %}¢{{ product.full }}{% else %}-{% endunless %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>