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.

42 lines
817 B

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