-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
31 lines (29 loc) · 922 Bytes
/
services.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
---
title: Our Services
heading: Our Services
subtitle: We craft digital space for amazing clients
---
<section class="diagonal patterned">
<div class="container">
<p class="editable" >We offer a wide range of digital services for our clients. We are knowledgeable in every layer of digital presence, and can match our services to your needs.</p>
</div>
</section>
<section class="diagonal alternate">
<div class="container">
<ul class="image-grid">
{% for service in site.services %}
<li>
<a href="{{ site.baseurl }}{{ service.url }}">
<img src="{% include relative-src.html src=service.image_path %}" alt="{{ person.name }}">
<div class="details">
<div class="name">{{ service.name }}</div>
<div class="position">{{ service.subtitle }}</div>
</div>
</a>
</li>
{% endfor %}
<li class="filler"></li>
<li class="filler"></li>
</ul>
</div>
</section>