templates/about.html.twig line 1
{% extends 'base.html.twig'%}
{% block title %}About Me - TeeVerse Photography
{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="css/style_about.css">
{% endblock %}
{% block body %}
<div class="page">
<h1>About Me</h1>
<div class="section-head">
<div class="head">
<img class="img-thais" src="assets/images/Thais_reduced.jpg" alt="Thais">
<p class="quote">
<span class="i">“There’s always room for a story that can transport people to another place.”</span>
<span class="nowrap">- J.K. Rowling</span>
</p>
</div>
<div class="side">
<p class="about-text">
<strong>Thais Verhasselt</strong>
is a French multi-disciplinary artist, photographer, creative producer and educator based in Portsmouth, United Kingdom.
With a broad range of experience in project management and team leadership, she specialises in organising the end to end production of projects.
Her personal projects explore themes such as identities’ construct, visual perception and memory.
</p>
<div class="contact-links">
<a class="contact hiddenMail">Contact Me</a>
<div class="contact-social">
<a target="_blank" href="https://www.instagram.com/teeverse_photography/" id="insta"></a>
<a target="_blank" href="https://www.linkedin.com/in/thais-verhasselt-94a65a76/" id="linkedin"></a>
</div>
</div>
</div>
</div>
<div class="column">
<div>
<h2>Exhibitions</h2>
<p>
7th OCTOBER - 23rd DECEMBER 2022<br>
Platform Graduate Award, Aspex Portsmouth<br>
JUNE-JULY 2022<br>
Truman Brewery, Free Range, London<br>
JUNE 2022<br>
Graduate show, University of Portsmouth<br>
APRIL 2021<br>
Middleman Art trail, Portsmouth<br>
</p>
</div>
<div>
<h2>Publications</h2>
<p>
2021 Online Fatale Zine<br>
2018 BBC We Set the Themes, You take the pictures<br>
Your pictures: In the Shadows<br>
Your pictures: Motivation<br>
</p>
</div>
</div>
<div class="cv-link">
<a
href="/mycv">
{# <img src="assets/images/cv.png" alt="Thais"> #}
<span>View my CV</span>
<span></span>
</a>
</div>
<p class="credits">Credits :<br>Nathan CAMPION<br><a target="blank" href="https://www.oniko.fr/">Nicolas ROBIN-GRANGE</a>
</p>
</div>
{% endblock %}
{% block javascripts %}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript">
$(window).on('load', function () {
$('.hiddenMail').on('click', function (event) {
event.preventDefault();
$(this).off("click");
$(".contact").css("width", "350px");
$(this).removeClass("hiddenMail");
$(this).html("teever" + "se.photog" + "raphy@gm" + "ail.com");
});
});
</script>
</script>{% endblock %}