-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakeanoffer.html
More file actions
46 lines (43 loc) · 1.24 KB
/
makeanoffer.html
File metadata and controls
46 lines (43 loc) · 1.24 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
45
46
---
layout: offer
title: "Make an Offer | Kappy Sapce"
published: true
---
<section class="content offers">
<p> </p>
<h1 class="thin">Make an Offer</h1>
<p>Com mais um rebento a caminho, o espaço em casa começa a ficar um pouco limitado.</p>
<p>Decidi então fazer um levantamento de material velho e outro não tão velho. Se vires algo que te interessa manda-me PM, ou deixa mensagem aqui no Disquss</p>
<p>Gostas? Propõe tu o preço!!</p>
<ul class="listing">
{% for offer in site.data.offers %}
<li>
<h3>{{ offer.title }}</h3>
<div class="row">
<div class="col col-xs-12 col-lg-4">
<div class="wrapper">
<a target="_blank" href="{{ offer.image }}">
<img src="{{ offer.image }}" alt="{{ offer.title }}">
{% if offer.price %}
<div class="ribbon-wrapper-green">
<div class="ribbon-green">{{ offer.price }} €</div>
</div>
{% endif %}
</a>
</div>
</div>
<div class="col col-xs-12 col-lg-8">
<p>
{{ offer.description }}
</p>
</div>
</div>
</li>
{% endfor %}
</ul>
</section>
<div class="pull"></div>
{% include facebook.html %}
{% include twitter.html %}
<hr>
{% include disqus.html %}