-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathportfolio.html
28 lines (28 loc) · 922 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
27
28
---
title: Selected projects
layout: default
permalink: /portfolio.html
video: true
client_logos: true
client_logos_border_top: true
---
<ul class="index">
{% for p in site.data.projects %}
<li class="index__item project project--client">
<a class="project__client-logo-link" href="{{p.client.url}}" title="{{p.client.title}}" target="_blank">
<img class="project__client-logo-img" src="{{p.client.logo_path}}" alt="Logo of {{p.client.title}}">
</a>
<h3 class="project__title">{{p.title}}</h3>
<div class="project__blurb">{{p.description | markdownify}}</div>
<div class="project__stack">Built using {% for tool in p.stack %}
<a href="{{ tool.url }}">{{ tool.name }}</a>{%- unless forloop.last -%}
{%- if forloop.rindex == 2 -%}
{{" and"}}
{%- else -%}
,
{%- endif -%}
{% endunless %}
{%- endfor -%}.</div>
</li>
{% endfor %}
</ul>