forked from tinamayswinkels/jekyll-tailwind-magazine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
49 lines (45 loc) · 1.31 KB
/
shop.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
---
layout: default
title: Shop
banner-image: /assets/images/bg-sandwalker.jpg
top-text: Shop Our
text-color: text-white
text-position: items-center
banner-height: min-h-[35vh]
background-position: bg-bottom left-0
heading: Curanted <br>Collection.
subheading: Nature teaches you to appreciate the finer things in life, to be present, live in the moment and just breath.
quote: Once you get a taste for travel, you'll never be the same.
quote-image: /assets/images/bg-sanddune.jpg
seo:
title:
description:
social_image:
twitter_card:
keywords:
hide-from-google: false
---
{% include hero-banner.html %}
<section class="p-5p">
<div class="max-w-screen-xl mx-auto">
<!-- Travel Guides -->
<h2 class="pb-6 text-4xl text-center blog-subheading lg:text-6xl">Travel Guides</h2>
<div class="grid sm:grid-cols-3">
{% for product in site.products-guides limit:3 %}
{% include collection-loop.html %}
{% endfor %}
</div>
</div>
</section>
{% include quote-banner.html %}
<section class="p-5p">
<div class="max-w-screen-xl mx-auto">
<!-- Presents -->
<h2 class="pb-6 text-4xl text-center blog-subheading lg:text-6xl">Lightroom Presets</h2>
<div class="grid sm:grid-cols-3">
{% for product in site.products-presets limit:3 %}
{% include collection-loop.html %}
{% endfor %}
</div>
</div>
</section>