{% extends "core/base.html" %} {% load static %} {% block content %}
{% include 'core/sections/header.html' %}

Skills

View all →
{% for skill in skills %}

{{ skill.name }}

{% for i in "12345" %} {% endfor %}

{{ skill.years_of_experience }} years

{% empty %}

No featured skills yet.

{% endfor %}

Certifications

View all →
{% for cert in certifications %}
{% if cert.image %} {{ cert.name }} {% endif %}

{{ cert.name }}

{{ cert.issuer }}

Earned: {{ cert.date_earned|date:"F Y" }}

{% empty %}

No featured certifications yet.

{% endfor %}
{% comment %}

Certifications

View all →
{% for cert in certifications %}
{% if cert.image %} {{ cert.name }} {% endif %}

{{ cert.name }}

{{ cert.issuer }}

Earned: {{ cert.date_earned|date:"F Y" }}

{% empty %}

No featured certifications yet.

{% endfor %}
{% endcomment %}

Featured Projects

View all →
{% for project in featured_projects %}
{% if project.image %}
{{ project.title }}
{% endif %}

{{ project.title }}

{{ project.description|truncatewords:20 }}

{% for tech in project.technology.split %} {{ tech }} {% endfor %}
View Details {% if project.url %} Live Demo {% endif %} {% if project.github_url %} GitHub {% endif %}
{% empty %}

No featured projects yet.

{% endfor %}
{% include 'core/sections/contact.html' %} {% include 'core/sections/footer.html' %}
{% endblock %}