You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
998 B

3 years ago
---
layout: simple
title: "Resume"
3 years ago
---
<h1 class="center">Tait Hoyem</h1>
3 years ago
## Experience
<ul class="clear-list">
{% for job in site.data.experience %}
3 years ago
<li>
<strong>{{ job.company }}</strong> &mdash; <em>{{ job.position }}</em> ({{ job.years }})
3 years ago
<p>{{ job.description }}</p>
</li>
{% endfor %}
3 years ago
</ul>
3 years ago
## Education
<ul class="clear-list">
{% for education in site.data.education %}
3 years ago
<li>
<strong>{{ education.institution }}</strong> &mdash; {{ education.level }} / <em>{{ education.name }}</em> ({{ education.years }})
3 years ago
{{ education.description | markdownify }}
</li>
4 years ago
{% endfor %}
3 years ago
</ul>
4 years ago
3 years ago
## Projects
<ul class="clear-list">
{% for project in site.data.projects %}
3 years ago
<li>
<strong><a href="{{ project.link }}">{{ project.name }}</a></strong>
3 years ago
<p>{{ project.description }}</p>
</li>
{% endfor %}
3 years ago
</ul>
## Skills
{% for list in site.data.skills %}
<h3>{{ list.section }}</h3>
<ul>
{% for skill in list.skilllist %}
<li>{{ skill.skill }}</li>
{% endfor %}
</ul>
{% endfor %}
3 years ago