{% import "website/macros/chip.html" as chip %} {% extends "website/base.html" %} {% block content %}

{{ project.name }}

{{ project.description| markdown | safe }}

Technologies

{% for technology in project.technologies %} {{ chip::chip(text=technology) }} {% endfor %}
{% if project.thumbnails|length > 0 %}

Gallery

{% for thumbnail in project.thumbnails %} project thumbnail {% endfor %}
{% endif %}
{% if project.github_url == "" and project.visit_url == "" and project.download_url == "" %} {% else %}

Links

{% if project.github_url %} CODE {% endif %} {% if project.visit_url %} LIVE {% endif %} {% if project.download_url %} DOWNLOAD {% endif %}
{% endif %}
{% endblock content %}