--- layout: default title: Experience use: [posts] --- {% block content %}

Experience

{% for experience in site.experiences|reverse %} {% set company = site.companies[experience.company] %}
{% if company.logo %}
{{ company.name }} logo
{% endif %}

{{ company.name }}

{% if company.url -%} {{- company.url -}} {%- endif %}
{{- experience.role }} from {{ experience.start }} to {{ experience.end|default('Present') -}} {%- if experience.location %} ({{ experience.location }}){% endif %}.
{% if experience.description %}
{{ experience.description|markdown }}
{% endif %}
{# /.inner #}
{% endfor %} {% endblock %}