{% extends "core/base.html" %} {% block title %}Projects - {{ personal_info.name }}{% endblock %} {% block content %} {% include "core/sections/page_header.html" with title="Projects" description="Explore my latest work and projects" %}
{% for project in projects %}
{% if project.image %} {{ project.title }} {% else %}
No image
{% endif %}

{{ project.title }}

{{ project.description }}

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

No projects added yet.

{% endfor %}
{% endblock %}