{% import "website/macros/chip.html" as chip %} {% import "website/macros/image-carousel.html" as image_carousel %} {% macro project_item(project) %}

{{ project.name }}

{{ project.short_description }}

{% for technology in project.technologies %} {{ chip::chip(text=technology) }} {% endfor %}
Read more
{% if project.github_url %} CODE {% endif %} {% if project.visit_url %} LIVE {% endif %} {% if project.download_url %} DOWNLOAD {% endif %}
{% if project.thumbnails|length > 0 %}
{% set carousel_id = "carousel-mobile-" ~ project.id %} {{ image_carousel::image_carousel(id=carousel_id, thumbnails=project.thumbnails) }}
{% endif %} {% if project.thumbnails|length == 0 %}
{% if project.category == "Desktop" %} {% endif %} {% if project.category == "Mobile" %} {%endif%} {% if project.category == "Web" %} {%endif%} {% if project.category == "Api" %} {%endif%} {% if project.category == "Game" %} {%endif%}
{% endif %}
{% if project.thumbnails|length > 0 %} {% endif %} {% if project.thumbnails|length == 0 %} {% endif %}
{% endmacro project_item %}