forked from ccommuneidee/ccommuneidee.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
26 lines (25 loc) · 816 Bytes
/
portfolio.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
---
title: Portfolio
heading: Our Work
subtitle: See some of our proud customers with exemplary results.
---
<section class="diagonal patterned">
<div class="container">
<p class="editor-link" style="text-align: center;"><a href="cloudcannon:collections/_clients/" class="btn"><strong>✎</strong> Manage Clients</a></p>
<ul class="image-grid">
{% for client in site.clients %}
<li>
<a href="{{ site.baseurl }}{{ client.url }}">
<img src="{% include relative-src.html src=client.image_path %}" alt="{{ person.name }}">
<div class="details">
<div class="name">{{ client.name }}</div>
<div class="position">{{ client.subtitle }}</div>
</div>
</a>
</li>
{% endfor %}
<li class="filler"></li>
<li class="filler"></li>
</ul>
</div>
</section>