WIP: Add CV

This commit is contained in:
Oliver Davies 2018-12-21 00:26:26 +00:00
parent 1a8bb99843
commit 80731d7914
3 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<h2>Certifications</h2>
<ul>
{% for certification in page.certifications %}
<li>{{ certification.title }}</li>
{% endfor %}
</ul>

View file

@ -0,0 +1,21 @@
<h2>Experience</h2>
<ul class="list-reset">
{% for item in page.experience %}
<li class="mb-12">
{% if site.companies[item.company].url %}
<h3><a href="{{ site.companies[item.company].url }}" class="text-inherit no-underline hover:underline focus:bg-grey-darkest">{{ site.companies[item.company].name }}</a></h3>
{% else %}
<h3>{{ site.companies[item.company].name }}</h3>
{% endif %}
{% for role in item.roles %}
<div>
<h4 class="mb-3 text-grey-darker">{{ role.title }} from {{ role.from }} to {{ role.to ?: 'present' }} ({{ role.location }})</h4>
{{ role.description|markdown }}
</div>
{% endfor %}
</li>
{% endfor %}
</ul>