templates/index.html.twig line 1

  1. {% extends 'base.html.twig'%}
  2. {% block stylesheets %}
  3.     <link rel="stylesheet" href="css/style.css">
  4.     <link rel="stylesheet" href="css/style_homepage.css">
  5.     <link rel="stylesheet" href="assets/fa/css/all.css">
  6. {% endblock %}
  7. {% block body %}
  8.     <div class="page">
  9.         <section>
  10.             <div class="homepage-div">
  11.                 <img class="img-homepage-thais" src="assets/images/Thais_homepage.jpg" alt="Thais">
  12.                 <div class="homepage-description">
  13.                     <span>Thaïs Verhasselt</span>
  14.                     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.
  15.                     <a href="/about" class="homepage-know_more">Know more</a>
  16.                 </div>
  17.             </div>
  18.         </section>
  19.         <section>
  20.             <h2>Services</h2>
  21.             <div class="services-div">
  22.                 <div class="service-container">
  23.                     <div class="service-oval"></div>
  24.                     <div class="service-text">Analog or Digital photoshoots to suit your needs, customised printing</div>
  25.                 </div>
  26.                 <div class="service-container">
  27.                     <div class="service-oval"></div>
  28.                     <div class="service-text">Production of collaborative projects and artistic workshops for organisation</div>
  29.                 </div>
  30.                 <div class="service-container">
  31.                     <div class="service-oval"></div>
  32.                     <div class="service-text">Delivery of group or 1 to 1 sessions to develop technical and storytelling skills</div>
  33.                 </div>
  34.             </div>
  35.         </section>
  36.         <section>
  37.             <h2>Projects</h2>
  38.             <div class="project-div">
  39.                 <div>
  40.                     {% for project in projects %}
  41.                         <a href="/project/{{project.id}}"><img class="img-project" src="/uploads/medium/{{project.getThumbnailImage.filename}}" alt="Thais"></a>
  42.                     {% endfor %}
  43.                 </div>
  44.                 <a href="/project" class="project-see_more">See more projects</a>
  45.             </div>
  46.         </section>
  47.     </div>
  48. {% endblock %}
  49. {% block javascripts %}{% endblock %}