forked from poole/hyde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
experiences.html
37 lines (31 loc) · 915 Bytes
/
experiences.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
---
layout: page
title: Experience
---
<div class="posts">
{% assign experience_list = site.experiences %}
{% for experience in experience_list%}
<table class="pure-table experience">
<tbody>
<tr>
<div class="unwrapper">
<td class="row-me">
{% for org in experience.organizations %}
<a href="{{ org.orgLink }}">
<img class="pure-img-responsive experience" src="{{ site.baseurl }}{{ org.image }}" alt="{{ org.altText}}" />
</a>
{% endfor %}
</td>
<td class="row-me">
{{ experience.content }}
</td>
</div>
</tr>
</tbody>
</table>
{% unless forloop.last %}
<hr>
{% endunless %}
{% endfor %}
<p><strong><a href="{{ site.baseurl }}projects">Not enough? Look at some of some different projects of mine.</a></strong></p>
</div>