forked from thinkshout/thinkshout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
49 lines (45 loc) · 1.3 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
layout: default
body-class: services
permalink: services/
title: Services
---
<div class="intro">
<div class="container">
<div class="text">
<h1>Services</h1>
<p>We use technology and strategy to elevate organizations creating positive change in the world.</p>
</div>
</div>
</div>
{% assign services = site.services | sort: 'order' %}
{% assign counter = 1 %}
{% for area in services %}
{% if area.layout == 'services-detail' %}
<section class="services-teaser" id="services{{ counter }}">
<div class="container">
<div class="side services-teaser-left">
<h1>{{ area.title }}</h1>
<a href="{{ site.baseurl }}{{ area.url }}" class="uppercase-link">Learn More</a>
</div>
<div class="side services-teaser-right">
<p>{{ area.blurb }}</p>
<ul>
{% for point in area.points %}
{{ point }}
{% endfor %}
</ul>
{% if area.examples %}
<i class="fa fa-caret-up"></i>
<p class="services-examples">
{{ area.examples }}
</p>
{% endif %}
</div>
</div>
</section>
{% assign counter = counter | plus: 1 %}
{% endif %}
{% endfor %}
{% include bene-cta.html %}
{% include open-source-contributions.html %}