forked from themefisher/airspace-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwork.html
executable file
·56 lines (54 loc) · 1.46 KB
/
work.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
---
layout: page
title: Our Work
permalink: /work
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>{% t work.call.title %}</h1>
<p>{% t work.call.desc %}</p>
</div>
</div>
</div>
</div>
</section>
<section id="clients-logo-section">
<div class="container">
<main class="box">
<div class="grid-flex">
{% for item in site.data.work %}
<article class="card cols-3">
<a href="{{ item.url }}" target="_blank">
<img width="300" src="{{ item.image }}" alt="{{ item.name }}"/>
<div class="content">
<h3>{{ item.name }}</h3>
<p>{{ item.text }}</p>
<small>
<span class="tag">{{ item.tags }}</span>
</small>
</div>
</a>
</article>
{% endfor %}
</div>
</main>
</div>
</section>
<!-- Call to action Start -->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h2>{% t work.final.title %}</h2>
<p>{% t work.final.text %}</p>
<a class="btn btn-default btn-call-to-action" href="{{ site.baseurl }}/contact" >{% t work.final.button %}</a>
</div>
</div>
</div>
</div>
</section>