forked from nickmangos/portfolio-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototypes.html
23 lines (22 loc) · 1.16 KB
/
prototypes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: default
title: Prototypes
---
<body class="grid--list format--list">
<header class="header--list">
<a class="header__logo" href="/index.html">
<svg width="31" height="24" viewBox="0 0 31 24">
<path fill-rule="evenodd" d="M123.282345,174.401303 L123.282345,151.6 L117.875179,151.6 L117.875179,165.671661 L107.354007,151.6 L102.24,151.6 L102.24,174.401303 L107.679739,174.401303 L107.679739,160.362215 L118.168339,174.401303 L123.282345,174.401303 Z M129.503844,169.22215 C127.907752,169.22215 126.800261,170.329642 126.800261,171.925733 C126.800261,173.554397 127.907752,174.661889 129.503844,174.661889 C131.099935,174.661889 132.24,173.554397 132.24,171.925733 C132.24,170.329642 131.099935,169.22215 129.503844,169.22215 Z" transform="translate(-102 -151)"/>
</svg>
</a>
<h1 class="header__intro">Prototypes</h1>
</header>
{% assign prototypes = site.prototypes | sort: 'number' | reverse %}
{% for prototype in prototypes %}
<a class="list-item" href="{{ prototype.url }}">
<img src="{{ prototype.cover-image }}">
<h2>{{ prototype.title | remove_first: 'Prototype - '}}</h2>
<p>{{ prototype.description }}</p>
</a>
{% endfor %}
</body>