-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
147 lines (142 loc) · 4.42 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
layout: default
title: Home
permalink: '/'
pagination:
enabled: true
---
<!-- start: hero section -->
<section class="site-hero" style="background-image: url({{ 'images/backgrounds/hero-background.jpg' | absolute_url }});">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="site-hero-content text-center">
<h6>WE WORK HARD, WE PLAY HARD</h6>
<h1>
We’re a Design Studio
<br>
That Belies In the Great Ideas
</h1>
<ul class="site-hero-content-buttons">
<li>
<a href="{{ '#project' | absolute_url }}" class="btn btn-secondary scroll-to">
<span class="btn-area">
<span data-text="See Our Works">
See Our Works
</span>
</span>
</a>
</li>
<li>
<a href="{{ '/contact' | absolute_url }}" class="btn btn-primary">
<span class="btn-area">
<span data-text="Connect with us">
Connect with us
</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<a href="#counter" class="site-hero-scroll scroll-to">
<img src="images/arrow-down.svg" alt="arrow-down">
</a>
</section>
<!-- end: hero section -->
<!-- start: counter section -->
<section class="site-counter" id="counter">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2 class="text-white">The Proof is in the Pudding!</h2>
</div>
</div>
{% if site.data.counters.size > 0 %}
{% for counter in site.data.counters %}
<div class="col-lg-3 col-md-6">
<div class="site-counter-item">
<span class="site-counter-item-title">{{ counter.title }}</span>
<h3 class="site-counter-item-number">{{ counter.count }}</h3>
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</section>
<!-- end: counter section -->
<!-- start: portfolio section -->
<section class="site-project" id="project">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>OUR RECENT WORKS</h2>
<p>Crafting experiences and seeking to make the complex clear & beautiful.</p>
</div>
</div>
{% assign posts = site.posts | where:'type', 'portfolio' %}
{%- for post in posts limit: 4 -%}
<div class="col-lg-6 col-md-10 mx-auto">
<div class="site-project-item">
<div class="site-project-item-thumb">
<img src="{{ post.image }}" alt="project-thumb-one">
</div>
<div class="site-project-item-content">
<span>{{ post.category[0] }}</span>
<h3>{{ post.title }}</h3>
<a href="{{ post.url | absolute_url }}" class="read-more">view project</a>
</div>
</div>
</div>
{%- endfor -%}
<div class="col-12 text-center text-lg-left">
<a href="{{ '/portfolio' | absolute_url }}" class="site-project-cta">MORE WORKS</a>
</div>
</div>
</div>
</section>
<!-- end: portfolio section -->
{% if site.data.testimonials.enable %}
<!-- start: testimonial section -->
<section class="site-testimonial">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title">
<h2>
{{ site.data.testimonials.title }}
</h2>
<p>
{{ site.data.testimonials.subtitle }}
</p>
</div>
</div>
{% for testimonial in site.data.testimonials.testimonial_item %}
<div class="col-lg-4 col-md-6">
<div class="site-testimonial-item">
<div class="site-testimonial-item-header">
<div class="thumb">
<img src="{{ testimonial.thumb | absolute_url }}" alt="user-thumb">
</div>
<div class="person">
<h5>{{ testimonial.name }}</h5>
<p>{{ testimonial.company_position }}</p>
</div>
</div>
<p class="site-testimonial-item-body">
{{ testimonial.quote }}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<!-- end: testimonial section -->
{% endif %}
{% include call-to-action.html %}