{% extends "base.html" %} {% block head %} {% endblock %} {% block content %} {% set base = site.config.base_url | default(value="") %}
{% if site.config.extra.avatar %} {% set avatar_src = site.config.extra.avatar %} {% if not (avatar_src is starting_with("http")) and not (avatar_src is starting_with("//")) %}{% set avatar_src = base ~ avatar_src %}{% endif %} {{ site.config.title }} {% endif %}

Hi, I'm {{ site.config.title }}

{% if site.config.extra.tagline %}

{{ site.config.extra.tagline }}

{% endif %}
{% set hero_pdf = site.config.extra.hero_pdf | default(value="") %} {% set hero_pdf_label = site.config.extra.hero_pdf_label | default(value="View PDF") %} {% if hero_pdf %} {% endif %} Experience {% set linkedin_url = site.config.extra.linkedin | default(value="") %} {% if linkedin_url %} LinkedIn {% endif %} {% set github_url = site.config.extra.github | default(value="") %} {% if github_url %} GitHub {% endif %} {% set book_url = site.config.extra.book_url | default(value="") %} {% if book_url %} Book {% endif %} Projects

About Me

{% if home %}
{{ home.content | safe }}
{% endif %}
{% if site.data.highlights %}

Highlights

{% for item in site.data.highlights.items %} {% set highlight_image = item.image | default(value="") %} {% if highlight_image and not (highlight_image is starting_with("http")) and not (highlight_image is starting_with("//")) %}{% set highlight_image = base ~ highlight_image %}{% endif %} {% endfor %}
{% endif %} {% if site.data.experience %}

Experience

{% for job in site.data.experience.jobs %}

{{ job.title }}

{{ job.company }}

{{ job.period }}

    {% for achievement in job.achievements %}
  • {{ achievement }}
  • {% endfor %}
{% endfor %}
{% endif %} {% if site.data.crates %}

{{ site.data.crates.title | default(value="Published Crates") }}

{% endif %} {% if site.collections.projects %}
{% endif %} {% if site.data.education %}

Education

{% for degree in site.data.education.degrees %}

{{ degree.degree }}

{{ degree.institution }}

{{ degree.period }}

{{ degree.description }}

{% endfor %}
{% endif %} {% if hero_pdf %} {% set hero_pdf_url = hero_pdf %} {% if not (hero_pdf_url is starting_with("http")) and not (hero_pdf_url is starting_with("//")) %}{% set hero_pdf_url = base ~ hero_pdf_url %}{% endif %} {% endif %}
{% endblock %}