{% extends '_skeleton.html' %} {% set _TITLE = 'Resume' %} {% block _content %}

{{resume.candidate_info.name|default('Lorenzo Waguespack')}}

{{resume.candidate_info.title|default('Full-Stack Engineer | Team Lead')}}
{{resume.candidate_info.email|default('lorenzowaguespack@gmail.com')}}
{{resume.candidate_info.phone|default('(561) 351-7750')}}

Professional Summary


Result-oriented software engineer with 4+ years of professional experience solving complex problems with cutting-edge software. I am passionate about delivering an exceptional user experience and building systems that provide comprehensive solutions to real-world problems.

Employment History


{% for employment in resume.employments %}
{{employment.organization_name}}
{{employment.location_display}}
{{employment.start_date|date_format}} – {{employment.end_date|date_format if employment.end_date else 'Present'}}
    {% for item in employment.employment_items %}
  • {{item.description}}
  • {% endfor %}
{% endfor %}

Education


{% for education in resume.educations %}
{% if education.honors_display %} {{education.honors_display}} {% endif %}
{{education.minor_display|default('')}}
{{education.organization_name}}
{{education.location_display}}
{{education.start_date|date_format}} – {{education.end_date|date_format|default('Present')}}
    {% for item in education.education_items %} {% if item.link %}
  • {{item.description}}
  • {% else %}
  • {{item.description}}
  • {% endif %} {% endfor %}
{% endfor %}
{% if resume.skills %}

Skills


{% for skill in resume.skills %} {{skill.name}} {% endfor %}
{% endif %} {% if resume.languages %}

Languages


{% for language in resume.languages %} {{language.name}} {% endfor %}
{% endif %} {% if resume.technologies %}

Technologies/Frameworks


{% for technology in resume.technologies %} {{technology.name}} {% endfor %}
{% endif %}
{% endblock %}