-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
33 lines (31 loc) · 1.09 KB
/
products.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
---
title: Products
permalink: "/products/"
description: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Soluta veritatis
in tenetur doloremque, maiores doloribus officia iste. Dolores.
layout: minimal
hero_image: "/images/sprinkles_background_1.jpg"
---
<div class="site-section">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="heading-border-bottom font-weight-bold serif text-black mb-5 text-center">See a list of my products</h2>
</div>
</div>
<div class="row">
{% for product in site.products %}
<div class="col-lg-3 col-md-6 mb-5 mb-lg-5">
<div class="service_13987">
<a href="{{ product.url | prepend: site.baseurl }}" class="mb-3 d-block"><img src="{{ product.image | prepend: site.baseurl }}" alt="{{ product.title }}" class="img-fluid"></a>
<div class="text">
<h3 class="serif mb-3">{{ product.title }}</h3>
<p>{{ product.content | markdownify }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
{% include sale.html %}