-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (34 loc) · 1.78 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
---
layout: default
section_id: portfolio
description: Barry Threw is a curator, technologist, designer, cultural producer & strategist working across digital art, built environments, experiential and immersive media, architectural projection mapping, and technology platforms.
thumbnail: profile.jpg
---
<div class='full' itemscope itemtype="http://schema.org/CollectionPage">
<div class='row welcome'>
<p>Welcome. I'm Barry Threw. I've worked as a curator, technologist, designer, cultural producer & strategist, and have over a decade of experience developing innovative & influential platforms, products, teams, and businesses across art, built environments, and experiential & immersive media. I'm currently the Executive Director of <a href="http://grayarea.org">Gray Area</a>, and a partner with <a href="http://fabricatorz.com">Fabricatorz</a>. I'm based in San Francisco. <a href="about/">More...</a>
</p>
</div>
<div class='row'>
<div class='modGallery masonry-container'>
<ul class='gallery large-block-grid-4 medium-block-grid-3 small-block-grid-2 seperated'>
{% assign sorted = site.projects | sort: 'date' | reverse %}
{% for project in sorted %}
<li class='{{project.category}} grid-item'>
<a href='{{project.url}}'>
<img alt="{{project.title}} Thumbnail" src="assets/images/{{project.url}}{{project.thumbnail}}" />
<div class='overlay'>
<div class='thumb-info'>
<h3>{{project.title}}</h3>
<p>{{ project.date | date: '%Y' }}</p>
<!--<p>{{project.description}}</p>-->
</div>
</div>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class='four spacing'></div>
</div>