-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (90 loc) · 2.99 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
title: Mallow World
description: Printables, Code & Design For Kids
layout: home
hero_image: "/images/sprinkles_background_1.jpg"
---
{% include welcome.html %}
{% include sale.html %}
{% if site.products.size > 0 %}
<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">My Products</h2>
</div>
</div>
<div class="row">
{% for product in site.products limit:4 %}
<div class="col-lg-3 col-md-6 mb-5 mb-lg-0">
<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 class="row justify-content-center">
<div class="col-lg-8 mt-lg-3 text-center">
<p><a href="{{ site.baseurl }}/products/" class="btn btn-primary">View All</a></p>
</div>
</div>
</div>
</div>
{% endif %}
{% if site.features.size > 0 %}
<div class="site-section bg-image overlay features_75651" style="background-image: url('{{ page.hero_image | prepend: site.baseurl }}')">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="heading-border-bottom font-weight-bold serif text-white mb-5">Features</h2>
</div>
</div>
<div class="row">
{% for feature in site.features limit:4 %}
<div class="col-md-6 mb-4 mb-lg-0 col-lg-3">
<div class="block_75651">
<div class="wrap-icon">
<span class="{{ feature.icon }}"></span>
</div>
<div class="text">
<h3>{{ feature.title }}</h3>
<p>{{ feature.content | markdownify }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}
{% if site.testimonials.size > 0 %}
<div class="site-section">
<div class="text-center">
<h2 class="heading-border-bottom font-weight-bold serif text-black mb-5 text-center">Testimonials</h2>
</div>
<div class="nonloop-block-13 owl-carousel d-flex">
{% for testimonial in site.testimonials %}
<div>
<div class="testimonial-2">
<div class="d-flex v-card align-items-center mb-4">
<img src="{{ testimonial.image | prepend: site.baseurl }}" alt="Image" class="img-fluid mr-3">
<span>{{ testimonial.title }}</span>
</div>
<blockquote>
<p>{{ testimonial.content | markdownify }}</p>
</blockquote>
</div>
</div>
{% endfor %}
</div>
<div class="text-center mt-5">
<a href="#" class="btn btn-primary custom-prev">Prev</a>
<a href="#" class="btn btn-primary custom-next">Next</a>
</div>
</div>
{% endif %}
{% include testimonial.html %}