{% extends 'base.html.twig' %}
{% block title %}{{ project.title }} | {{ parent() }}{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block body %}
{# TODO: add ImageGallery schema code back in here #}
{{ project.title }}
{% set loopLength = project.numberOfPhotos %}
{% for x in 1..loopLength %}
{% if x < 10 %}
{% set imageNumber = '0'~x %}
{% else %}
{% set imageNumber = x %}
{% endif %}