{% extends "base.html" %} {% block title %}Progetti - Hersel.it{% endblock %} {% block content %}

I Miei Progetti

Una raccolta dei lavori che ho realizzato

{% if projects %}
{% for project in projects %}
{% if project.image_url %} {{ project.title }} {% else %}
{% endif %}
{{ project.title }}

{{ project.description[:150] }}{% if project.description|length > 150 %}...{% endif %}

{% if project.technologies %}
{% for tech in project.technologies[:4] %} {{ tech }} {% endfor %} {% if project.technologies|length > 4 %} +{{ project.technologies|length - 4 }} {% endif %}
{% endif %}
Dettagli {% if project.github_url %} Codice {% endif %}
{% if project.demo_url %} Demo Live {% endif %}
{% endfor %}
{% else %}

Nessun progetto disponibile

Sto lavorando su alcuni progetti interessanti!

Torna alla Home
{% endif %}
{% endblock %}