forked from kostajh/savaslabs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour-work.html
27 lines (26 loc) · 892 Bytes
/
our-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
---
layout: page
title: Our work
permalink: "/work/"
excerpt: A selection of recent work done by Savas
---
<p class="page-description">Below is a selection of recent work done by Savas.</p>
<div class="flex-container">
<div class="cards">
{% for portfolio in site.work %}
<div class="card work-card">
<a href="{{ portfolio.url }}">
<div class="card-image">
<img alt="{{ portfolio.title }}" src="{{ base.url }}/{{ portfolio.image }}">
</div>
<div class="card-header">
{{ portfolio.title }}
</div>
<div class="card-copy">
<p>{{ portfolio.short_description }}</p>
</div>
</a>
</div>
{% endfor %}
</div>
</div>