templates/themesWebsite/cvs/application/cv/anonyme.html.twig line 1

Open in your IDE?
  1. {% extends 'themesWebsite/cvs/application/cv/base.html.twig' %}
  2. {% block title %}CV anonyme {{ slug }}{% endblock title %}
  3. {% block header %}{% include "/themesWebsite/cvs/application/cv/components/header_anonyme.html.twig" with {'slug':slug} %}{% endblock header %}
  4. {% block body %}
  5.     <section class="section-frame mx-xxl-11 overflow-hidden">
  6.         <div class="wrapper image-wrapper bg-image bg-cover bg-overlay bg-overlay-light-500" data-image-src="https://sylvain-dieterle.com/ups/653fe559574d1638850597.png">
  7.             <div class="container py-16 py-md-18 text-center position-relative">
  8.                 <div class="position-absolute shape yellow d-none d-lg-block w-5" style="top: 18%; left: 5%;"><img src="https://sylvain-dieterle.com/ups/653fe592ce7ec779385852.svg" class="icon-svg w-100 h-100" alt="" /></div>
  9.                 <div class="position-absolute shape leaf d-none d-lg-block w-10" style="bottom: 30%; left: 2%;"><img src="https://sylvain-dieterle.com/ups/653fe612ee0bf246496598.svg" class="icon-svg w-100 h-100" alt="" /></div>
  10.                 <div class="position-absolute shape fuchsia d-none d-lg-block w-6" style="top: 20%; right: 2%; transform: rotate(70deg);"><img src="https://sylvain-dieterle.com/ups/653fe5fd0a314582889925.svg" class="icon-svg w-100 h-100" alt="" /></div>
  11.                 <div class="position-absolute shape grape d-none d-lg-block w-6" style="bottom: 28%; right: 5%;"><img src="https://sylvain-dieterle.com/ups/653fe5d755af3087577495.svg" class="icon-svg w-100 h-100" alt="" /></div>
  12.                 <div class="row">
  13.                     <div class="col-lg-9 col-xxl-8 mx-auto">
  14.                         <h1 class="display-1 fs-70 px-md-10 px-lg-0 px-xl-8 mb-5">đź‘‹ Salut, je suis {{ candidate.titleJob|lower }}</h1>
  15.                         <p class="lead fs-24 px-md-10 px-lg-0 mx-lg-n10 mx-xl-0 mb-8">{{ candidate.descriptionCoverAnonyme }}</p>
  16.                     </div>
  17.                 </div>
  18.             </div>
  19.         </div>
  20.     </section>
  21.     <section class="wrapper bg-light" id="services">
  22.         <div class="container py-16 py-md-18">
  23.             <div class="row d-flex align-items-start gy-10 mb-18 mb-md-20">
  24.                 <div class="col-lg-5 position-lg-sticky" style="top: 8rem;">
  25.                     <h3 class="display-2 mb-5">Les services que j'ai Ă©laborĂ©s correspondent Ă  vos exigences.</h3>
  26.                     <p class="mb-7">{{ candidate.descriptionServicesAnonyme }}</p>
  27.                 </div>
  28.                 <div class="col-lg-6 ms-auto">
  29.                     {% set couleurs = ['bg-soft-fuchsia', 'bg-soft-yellow', 'bg-soft-leaf', 'bg-soft-orange', 'bg-soft-grape', 'bg-soft-aqua'] %}
  30.                     {% for s in services %}
  31.                         {% set indexCouleur = loop.index0 % couleurs|length %}
  32.                         <div class="card {{ couleurs[indexCouleur] }} mb-6">
  33.                             <div class="card-body d-flex flex-row">
  34.                                 <div>
  35.                                     <img src="https://sylvain-dieterle.com/ups/6540dfdd83e0d175633467.svg" class="icon-svg icon-svg-md text-fuchsia me-5" alt="IcĂ´ne" />
  36.                                 </div>
  37.                                 <div>
  38.                                     <h3 class="fs-21 mb-2">{{ s.title }}</h3>
  39.                                     <p class="mb-0">{{ s.description }}</p>
  40.                                 </div>
  41.                             </div>
  42.                         </div>
  43.                     {% endfor %}
  44.                 </div>
  45.             </div>
  46.         </div>
  47.     </section>
  48.     <section class="wrapper bg-light" id="projects">
  49.         <div class="container py-16 py-md-18">
  50.             <div class="row align-items-center mb-10">
  51.                 <div class="col-md-8 col-lg-9 col-xl-8 col-xxl-7">
  52.                     <h2 class="display-2 mb-0">DĂ©couvrez une sĂ©lection de mes projets les plus rĂ©cents, mettant en avant des concepts innovants.</h2>
  53.                 </div>
  54.             </div>
  55.             {% set couleurs = ['bg-soft-fuchsia', 'bg-soft-yellow', 'bg-soft-leaf', 'bg-soft-orange', 'bg-soft-grape', 'bg-soft-aqua'] %}
  56.             {% for project in projects %}
  57.                 {% set indexCouleur = loop.index0 % couleurs|length %}
  58.                 <div class="card {{ couleurs[indexCouleur] }} mb-10">
  59.                     <div class="card-body p-12 pb-0">
  60.                         <div class="row">
  61.                             <div class="col-lg-12 pb-12 align-self-center">
  62.                                 <h3 class="h1 post-title mb-3">{{ project.title }}</h3>
  63.                                 <p>{{ project.descriptionAnonyme }}</p>
  64.                             </div>
  65.                             {# <div class="col-lg-7 offset-lg-1 align-self-end">
  66.                                 <figure><img class="img-fluid mb-10" src="https://sylvain-dieterle.com/ups/65a1309f1e2ea379952735.png" alt="{{ project.title }}" /></figure>
  67.                             </div> #}
  68.                         </div>
  69.                     </div>
  70.                 </div>
  71.             {% endfor %}
  72.         </div>
  73.     </section>
  74.     <section class="wrapper bg-light">
  75.         <div class="container py-16 py-md-18">
  76.             <a id="about"></a>
  77.             <div class="row gx-md-8 gx-xl-12 gy-10 align-items-center mt-lg-18 mb-16 mb-md-18">
  78.                 <div class="col-lg-12">
  79.                     <h2 class="display-2 mb-3">Plus d'informations sur moi </h2>
  80.                     <p class="lead">{{ candidate.descriptionAnonyme|nl2br }}</p>
  81.                 </div>
  82.             </div>
  83.             <div class="row gx-md-8 gx-xl-12 gy-10">
  84.                 <div class="col-lg-5 mx-auto">
  85.                     <h2 class="display-2 mb-3">Mon parcours</h2>
  86.                     <p>{{ candidate.descriptionExperienceAnonyme|nl2br }}</p>
  87.                 </div>
  88.                 <div class="col-lg-7">
  89.                     <ul class="timeline">
  90.                         {% for q in experiences %}
  91.                             <li class="timeline-item">
  92.                                 <div class="timeline-info meta fs-14">{% if q.start is not empty %}{{ q.start|date('M Y') }}{% endif %} - {% if q.today == 1 %}aujourd'hui{% else %}{{ q.end|date('M Y') }}{% endif %}</div>
  93.                                 <div class="timeline-marker"></div>
  94.                                 <div class="timeline-content">
  95.                                     {% if q.schoolName is not empty %}
  96.                                         <h3 class="timeline-title">{% if q.title is not empty %}{{ q.title }}{% endif %} Ă  {{ q.schoolName }}</h3>
  97.                                     {% else %}
  98.                                         <h3 class="timeline-title">{% if q.enterpriseName is not empty %}{{ q.enterpriseName }}{% endif %} - {% if q.title is not empty %}{{ q.title }}{% endif %}</h3>
  99.                                     {% endif %}
  100.                                     {% if q.diploma == 1 %}<p><span style="color:red;">CertifiĂ©</span></p>{% endif %}
  101.                                     <p>{{ q.descriptionAnonyme }}</p>
  102.                                 </div>
  103.                             </li>
  104.                         {% endfor %}
  105.                     </ul>
  106.                 </div>
  107.             </div>
  108.         </div>
  109.     </section>
  110.     <section class="wrapper" id="skills">
  111.         <div class="container py-14 py-md-16">
  112.             <div class="row text-center">
  113.                 <div class="col-lg-10 col-xl-9 col-xxl-8 mx-auto position-relative">
  114.                     <h3 class="display-3 mb-11 px-lg-5 px-xl-0 px-xxl-3">Mes compĂ©tences</h3>
  115.                 </div>
  116.             </div>
  117.             <div class="row">
  118.                 <div class="col-xxl-11 mx-auto">
  119.                     <div class="row gx-md-8 gy-10 text-center">
  120.                         {% set couleurs = ['bg-soft-fuchsia', 'bg-soft-yellow', 'bg-soft-leaf', 'bg-soft-orange', 'bg-soft-grape', 'bg-soft-aqua'] %}
  121.                         {% for skill in skills %}
  122.                             {% set indexCouleur = loop.index0 % couleurs|length %}
  123.                             <div class="col-md-6 col-lg-3">
  124.                                 <div class="svg-bg svg-bg-lg {{ couleurs[indexCouleur] }} rounded-xl mb-4"> <img src="https://sylvain-dieterle.com/ups/6540dfdd83e0d175633467.svg" class="svg-inject icon-svg solid text-navy" alt="" /> </div>
  125.                                 <h4 class="fs-20">{{ skill.title|upper }}</h4>
  126.                             </div>
  127.                         {% endfor %}
  128.                     </div>
  129.                 </div>
  130.             </div>
  131.         </div>
  132.     </section>
  133.     <section class="section-frame mx-xxl-11 overflow-hidden">
  134.         <div class="wrapper image-wrapper bg-image bg-cover bg-overlay bg-overlay-light-500" data-image-src="https://sylvain-dieterle.com/ups/653fe559574d1638850597.png">
  135.             <div class="container py-16 py-md-18 text-center">
  136.                 <div class="position-absolute shape yellow d-none d-lg-block w-5" style="top: 18%; left: 5%;"><img src="https://sylvain-dieterle.com/ups/653fe592ce7ec779385852.svg" class="icon-svg w-100 h-100" alt="" /></div>
  137.                 <div class="position-absolute shape leaf d-none d-lg-block w-10" style="bottom: 30%; left: 2%;"><img src="https://sylvain-dieterle.com/ups/653fe612ee0bf246496598.svg" class="icon-svg w-100 h-100" alt="" /></div>
  138.                 <div class="position-absolute shape fuchsia d-none d-lg-block w-6" style="top: 20%; right: 2%; transform: rotate(70deg);"><img src="https://sylvain-dieterle.com/ups/653fe5fd0a314582889925.svg" class="icon-svg w-100 h-100" alt="" /></div>
  139.                 <div class="position-absolute shape grape d-none d-lg-block w-6" style="bottom: 28%; right: 5%;"><img src="https://sylvain-dieterle.com/ups/653fe5d755af3087577495.svg" class="icon-svg w-100 h-100" alt="" /></div>
  140.                 <div class="row">
  141.                     <div class="col-lg-9 col-xxl-8 mx-auto">
  142.                         <h1 class="display-1 fs-70 mx-lg-n10 mx-xl-0 mb-5">Vous pensez Ă  un projet ? Collaborons ensemble !</h1>
  143.                         <p class="lead fs-24 px-md-12 px-lg-0 mx-lg-n10 mx-xl-0 mb-8">J'apporte des solutions rapides pour faciliter la vie de mes clients. Des questions ? Contactez-moi et je vous rĂ©pondrai rapidement.</p>
  144.                         <a href="mailto:contact@mirtillo.fr" class="btn btn-lg btn-primary btn-icon btn-icon-end">Envoyer moi un message</a>
  145.                     </div>
  146.                 </div>
  147.             </div>
  148.         </div>
  149.     </section>
  150. {% endblock body %}