templates/pages/projects.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}
  3.     Projects |
  4.     {{parent()}}
  5. {% endblock %}
  6. {% block content %}
  7.     {% include "_partials/_navbar.html.twig" %}
  8.     <div class="jumbotron text-right" style="background-color:#ff944d">
  9.         <h1 class="display-4" style="color:white">
  10.             <strong>
  11.                 Réalisations sectorielles
  12.             </strong>
  13.         </h1>
  14.         <hr class="my-4">
  15.         <p style="color:#68748D;">
  16.             <medium class="my-1">
  17.                 Trouvez avec nous la solution à vos attentes ...
  18.                 <span class="pl-3">
  19.                     <i class="align-middle fas fa-check-square fa-2x"></i>
  20.                 </span>
  21.             </medium>
  22.         </p>
  23.     </div>
  24.     {# /row 1 #}
  25.     <div class="card-deck">
  26.         {% include "_partials/_featurette.html.twig" with {
  27.             'icon' : 'fas fa-piggy-bank',
  28.             'icon_color' :'rgb(230, 117, 189)',
  29.             'title' : 'Banque et finance',
  30.             'text' : 'Banque d\'affaires, banque de détail...',
  31.             'link':'bankprojects_page'
  32.             }%}
  33.         {% include "_partials/_featurette.html.twig" with {
  34.             'icon' : 'fas fa-paper-plane',
  35.             'icon_color' :'rgb(59, 91, 152)',
  36.             'title':'Transport',
  37.             'text':'Transport aérien, terrestre...',
  38.             'link':'cargoprojects_page'
  39.             }%}
  40.         {% include "_partials/_featurette.html.twig" with {
  41.             'icon' : 'fas fa-satellite-dish',
  42.             'icon_color' :'rgb(0, 128, 255)',
  43.             'title':'Télécom',
  44.             'text':'Réseaux, mobile, média...',
  45.             'link':'telcoprojects_page'
  46.             }%}        
  47.     </div>
  48. {# row2 #}
  49.     <div class="card-deck">
  50.         {% include "_partials/_featurette.html.twig" with {
  51.             'icon' : 'fas fa-shopping-cart',
  52.             'icon_color' :'rgb(255, 191, 0)',
  53.             'title':'Grande Distribution',
  54.             'text':'Fabrication et distribution de produits laitiers, Fabrication et distribution d\'alcool de luxe...',
  55.             'link':'retailprojects_page'
  56.             }%}
  57.         {% include "_partials/_featurette.html.twig" with {
  58.             'icon' : 'fas fa-first-aid',
  59.             'icon_color' :'rgb(255, 0, 0)',
  60.             'title':'Pharmacologie',
  61.             'text':'Pharmacovigilance, Regulatory Affairs, Electronic Documentation Management, Clinical Tests...',
  62.             'link':'pharmaprojects_page'
  63.         }%}
  64.         {% include "_partials/_featurette.html.twig" with {
  65.             'icon' : 'fas fa-car-crash',
  66.             'icon_color' :'Mediumslateblue',
  67.             'title':'Assurance',
  68.             'text':'Assurances de Biens, Assurances de Pesonnes ...',
  69.             'link':'insuranceprojects_page'
  70.             }%}
  71.     </div>
  72. {% endblock %}