templates/index.html.twig line 1
{% extends 'base.html.twig'%}
{% block stylesheets %}
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style_homepage.css">
<link rel="stylesheet" href="assets/fa/css/all.css">
{% endblock %}
{% block body %}
<div class="page">
<section>
<div class="homepage-div">
<img class="img-homepage-thais" src="assets/images/Thais_homepage.jpg" alt="Thais">
<div class="homepage-description">
<span>Thaïs Verhasselt</span>
is a photographer, creative producer and educator based in Portsmouth, United Kingdom. Her projects explore themes such as the construction of identities, visual perception and memory.
<a href="/about" class="homepage-know_more">Know more</a>
</div>
</div>
</section>
<section>
<h2>Services</h2>
<div class="services-div">
<div class="service-container">
<div class="service-oval"></div>
<div class="service-text">Analog or Digital photoshoots to suit your needs, customised printing</div>
</div>
<div class="service-container">
<div class="service-oval"></div>
<div class="service-text">Production of collaborative projects and artistic workshops for organisation</div>
</div>
<div class="service-container">
<div class="service-oval"></div>
<div class="service-text">Delivery of group or 1 to 1 sessions to develop technical and storytelling skills</div>
</div>
</div>
</section>
<section>
<h2>Projects</h2>
<div class="project-div">
<div>
{% for project in projects %}
<a href="/project/{{project.id}}"><img class="img-project" src="/uploads/medium/{{project.getThumbnailImage.filename}}" alt="Thais"></a>
{% endfor %}
</div>
<a href="/project" class="project-see_more">See more projects</a>
</div>
</section>
</div>
{% endblock %}
{% block javascripts %}{% endblock %}