-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwork.html
More file actions
60 lines (57 loc) · 1.56 KB
/
work.html
File metadata and controls
60 lines (57 loc) · 1.56 KB
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
---
title: Join us
layout: default
---
<section class="stack">
<h2>Our work</h2>
<p class="intro">Digital creative and cooperative work in action.</p>
<div class="grid">
{% for c in site.case_studies %}
<div class="box stack work">
<div class="box padded-xl">
<img src="/assets/img/case_studies/{{ c.logo }}" />
</div>
<div class="grid">
<div class="stack" style="--space: var(--space-md)">
<div>
<h4 class="work__title">Client name</h4>
<p>{{ c.client_name }}</p>
</div>
<div>
<h4 class="work__title">Coops involved</h4>
<ul class="services">
{% for coop in c.coops %}
<li>{{ coop }}</li>
{% endfor %}
</ul>
</div>
<div>
<h4 class="work__title">Project name</h4>
<p>{{ c.project_name }}</p>
</div>
</div>
<div>
<h4 class="work__title">Services offered</h4>
<ul class="services">
{% for service in c.services %}
<li>{{ service }}</li>
{% endfor %}
</ul>
</div>
</div>
<div>
<h4 class="work__title">Key deliverables or outcomes</h4>
<p>{{ c.content }}</p>
</div>
<div>
<h4 class="work__title">Links</h4>
<ul class="services">
{% for link in c.links %}
<li><a href="{{ link }}">{{ link }}</a></li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
</section>