-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtienda.html
More file actions
44 lines (44 loc) · 1.36 KB
/
tienda.html
File metadata and controls
44 lines (44 loc) · 1.36 KB
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
---
layout: page
title: "Tienda"
description: "¿Quiéres ayudarnos comprando un souvenir?"
header-img: "/img/bg-tienda.jpg"
---
<center>
<h1>
Artículos a la venta
</h1></br>
<h4 class="text-body">
Te mostramos algunos de los productos (souvenirs) con los cuales nos ayudas económicamente para seguir realizando mas actividades como las que hacemos. Danos una mano comprando un regalo para algun amig@ o simplemente regalate uno a tí.
</h4></br>
<div class="row" style="width: 100%">
{% for producto in site.data.tienda %}
<div class="col-sm-6">
<div class="img-effect-store pic-store">
<div class="flip-container">
<center>
<div class="flipper">
<div class="front">
<img src="{{ producto.product-front }}"/>
</div>
<div class="back">
<img src="{{ producto.product-back }}"/>
</div>
</div>
</center>
</div>
<h3 class="store-title">{{ producto.product-name }}</h3>
<h4 class="store-subtitle">{{ producto.product-desc }}</h4>
<h5 class="store-price">{{ producto.product-price }}</h5>
<a href="http://m.me/GDG.AndroidBo" style="text-decoration: none" target="_blank">
<div class="store-button">
<h4 class="text-comprar">
Comprar
</h4>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</center>