-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
22 lines (22 loc) · 1.12 KB
/
portfolio.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
title: Web Design and Front-end Development Portfolio | Richard Westenra
description: A selection of my recent client work.
permalink: portfolio/
---
<main class="wrapper">
<article class="post portfolio">
<h2>Portfolio</h2>
<p>This is a selection of some of my recent work for <a href="http://www.distilled.net/" target="_blank">Distilled</a>. While I enjoy handling both design and development, due to the resource availability of our creative team I have been primarily responsible for just the development for most of these pieces, although I generally have a hand in shaping the UI design. <strong>N.B.</strong> Unfortunately I’m unable to showcase some of my favourite work here due to non-disclosure agreements.</p>
<ul>
{% for item in site.data.portfolio %}
<li>
<a class="thumb" href="{{ item.url }}" target="_blank" style="background-image: url(/assets/images/portfolioThumbs/{{ item.img }});">
<span class="name"><em>{{ item.name }}</em> <cite>{{ item.client }}</cite></span>
<span class="year">{{ item.year }}</span>
</a>
</li>
{% endfor %}
</ul>
</article>
</main>