templates/themesWebsite/blog_cvs/page_content.html.twig line 1

Open in your IDE?
  1. {% extends 'themesWebsite/blog_cvs/base.html.twig' %}
  2. {% block title %}{{ page.shortTitle }}{% endblock title %}
  3. {% block description %}{{ page.shortDescription }}{% endblock description %}
  4. {% block robots %}index,follow{% endblock robots %}
  5. {#% block meta_social %}{{ parent() }}{% include "/themesWebsite/blog_cpn/components/socialmedia.html.twig" with { 'page':page,'social_type':'website' } %}{% endblock meta_social %#}
  6. {#% block canonical %}{{ parent() }}{% include "/themesWebsite/blog_cpn/components/canonical.html.twig" with {'page':page } %}{% endblock canonical %#}
  7. {#% block meta %}{{ parent() }}{% include "/themesWebsite/blog_cpn/components/author.html.twig" with {'page':page } %}{% endblock meta %#}
  8. {% block body_header %}
  9.     {% include "/themesWebsite/blog_02/components/header.html.twig" with {'navcolor':'default','navtype':'default'} %}
  10. {% endblock body_header %}
  11. {% block body %}
  12.     <div class="hero-header bg-light-primary" style="min-height:400px;">
  13.         <div class="container">
  14.             <div class="row justify-content-between align-items-center">
  15.                 <div class="col-md-12">
  16.                     <h1 class="mb-4">{{ page.title }}</h1>
  17.                     <p class="fs-5">{{ page.descriptionCover }}</p>
  18.                     {% if page.pathMirtilloPlus is not empty  %}
  19.                         <span><a href="{{ page.pathMirtilloPlus }}" class="btn btn-md btn-primary fw-medium rounded-1">{{ page.titleMirtilloPlus }}</a></span>
  20.                     {% endif %}
  21.                 </div>
  22.             </div>
  23.         </div>
  24.     </div>
  25.     <section class="pt-2">
  26.         <div class="container">
  27.             {% if page.descriptionContent is not empty %}
  28.                 <div class="row justify-content-center">
  29.                     <div class="col-md-12">
  30.                         {{ page.descriptionContent|parseMarkdownTag(page.tag)|parseMarkdown|raw }}
  31.                     </div>
  32.                 </div>
  33.             {% endif %}
  34.             {% if page.descriptionAfterContent is not empty %}
  35.                 <div class="row justify-content-center">
  36.                     <div class="col-md-12">
  37.                         {{ page.descriptionAfterContent|parseMarkdownTag(page.tag)|parseMarkdown|raw }}
  38.                     </div>
  39.                 </div>
  40.             {% endif %}
  41.             <div class="upload-box">
  42.                 <div class="filedrop_box">
  43.                     <header>
  44.                         <h4>Lancez la création de votre CV anonyme</h4>
  45.                     </header>
  46.                     <p>Créez gratuitement votre CV anonyme et entamez la discussion avec les recruteurs et entreprises.</p>
  47.                     <a href="{{ path('cvs_website_customer_deposer_un_cv') }}" class="btn btn-md btn-primary fw-medium rounded-1">Commencer</a>
  48.                 </div>
  49.             </div>
  50.             {# Dernier contenu #}
  51.             {% if page.descriptionContentEnd is not empty %}
  52.                 <div class="row justify-content-center">
  53.                     <div class="col-md-12">
  54.                         {{ page.descriptionContentEnd|parseMarkdownTag(page.tag)|parseMarkdown|raw }}
  55.                     </div>
  56.                 </div>
  57.             {% endif %}
  58.         </div>
  59.     </section>
  60. {% endblock body %}