{% extends "core/base.html" %} {% block title %}{{ project.title }} - {{ personal_info.name }}{% endblock %} {% block content %}
← Back to Projects
{% if project.image %}
{{ project.title }}
{% endif %}

{{ project.title }}

{{ project.detailed_description|linebreaks }}
{% for tech in project.technology.split %} {{ tech }} {% endfor %}
{% if project.gallery_images.exists %}

Project Gallery

{% for img in project.gallery_images.all %}
{{ img.caption }} {% if img.caption %}
{{ img.caption }}
{% endif %}
{% endfor %}
{% endif %}
{% if project.url %} View Live Project {% endif %} {% if project.github_url %} View on GitHub {% endif %}
{% endblock %}