{% if name %}

{{ name }}

{% endif %} {% if title %}

{{ title }}

{% endif %}
{% if summary %}

About Me

{{ summary }}

{% endif %} {% if experience %}

Work Experience

{% for exp in experience %}
{{ exp.period }} {{ exp.company }}

{{ exp.role }}

{% if exp.points %}
    {% for point in exp.points %}
  • {{ point }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if organizations %}

Organizational Experience

{% for org in organizations %}
{{ org.period }} {{ org.organization }}

{{ org.role }}

{% if org.points %}
    {% for point in org.points %}
  • {{ point }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if projects %}

Projects

{% for project in projects %}
{{ project.date }} {{ project.stack }}

{{ project.title }}

{% if project.points %}
    {% for point in project.points %}
  • {{ point }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if references %}

References

{% for ref in references %}

{{ ref.name }}

{{ ref.company }} / {{ ref.position }}

{% if ref.phone %}

Phone: {{ ref.phone }}

{% endif %} {% if ref.email %}

Email: {{ ref.email }}

{% endif %}
{% endfor %}
{% endif %}