-
Notifications
You must be signed in to change notification settings - Fork 0
/
works.html
41 lines (37 loc) · 951 Bytes
/
works.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
39
40
41
---
layout: default
title: Work
---
{% include masthead.html selected='work' %}
<article class="article-list gray column x100 wrapper">
<ul id="Works" class="pillar group padded">
{% for work in site.categories.works %}
<li class="column x100 el">
<section>
<div class="group">
{{ work.content }}
</div>
<header class="group">
<h1>{{ work.title }}</h1>
<div class="media">
<div class="img right">
<label>Role:</label>
<p>{{ work.roles }}</p>
</div>
</div>
<p>{{ work.cutline }}</p>
</header>
</section>
</li>
{% endfor %}
</ul>
</article>
<script src="/js/lib/foundation.js"></script>
<script src="/js/lib/foundation.orbit.js"></script>
<script>
(function() {
$(document).foundation('orbit', {
animation_speed: 200
});
})(jQuery)
</script