templates\site\videos\videos.html.twig line 1

Open in your IDE?
  1. {% extends 'layouts/site.html.twig' %}
  2. {% block title %} ORISHAS TV {% endblock %}
  3. {% block css %}
  4.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
  5.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
  6.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css">
  7.     <style>
  8.     /*sans bordure (1ère photo)*/
  9.     .arrondie {
  10.     -moz-border-radius:50px;
  11.     -webkit-border-radius:10px;
  12.     border-radius:50px;
  13.     }
  14.     col-md-4{
  15.         width: 30% !important;
  16.     }
  17.     span.img-text {
  18.         text-decoration: none;
  19.         outline: none;
  20.         transition: all 0.4s ease;
  21.         -webkit-transition: all 0.4s ease;
  22.         -moz-transition: all 0.4s ease;
  23.         -o-transition: all 0.4s ease;
  24.         cursor: pointer;
  25.         width: 100%;
  26.         font-size: 23px;
  27.         display: block;
  28.         text-transform: capitalize;
  29.     }
  30.     span.img-text:hover {
  31.         color: #2caae1;
  32.     }
  33.     .o-flex-stretch--center {
  34.         -webkit-align-items: center;
  35.         -ms-flex-align: center;
  36.         align-items: center;
  37.     }
  38.     .o-flex-stretch {
  39.     display: -webkit-flex;
  40.     display: -ms-flexbox;
  41.     display: flex;
  42.     -webkit-justify-content: space-between;
  43.     -ms-flex-pack: justify;
  44.     justify-content: space-between;
  45.     }
  46.    
  47.     .c-title-universe__title {
  48.         position: relative;
  49.         display: inline-block;
  50.         background-color: #fff;
  51.         text-transform: uppercase;
  52.         font-size: 30px;
  53.         font-size: 3rem;
  54.         font-weight: 100;
  55.         line-height: 1.25;
  56.         letter-spacing: .4px;
  57.         letter-spacing: .04rem;
  58.         padding-right: 10px;
  59.         padding-right: 1rem;
  60.     }
  61.     
  62.     .c-title-universe__link {
  63.         position: relative;
  64.         background-color: #fff;
  65.         display: block;
  66.         margin-top: 5px;
  67.         margin-top: .5rem;
  68.         -webkit-transform: translate3d(0,0,0);
  69.         transform: translate3d(0,0,0);
  70.     }
  71.     .c-title-universe--color-1 {
  72.         color: #006fb7;
  73.     }
  74.     .marge{
  75.     margin-right:16px
  76.     }
  77.     th, td {
  78.     border-bottom: 1px solid #ddd;
  79.     margin-bottom:20px;
  80.     margin-top:20px;
  81.     }
  82.     tr{
  83.     margin-bottom:50px;
  84.     margin-top:50px;
  85.     }
  86.     tr:hover {
  87.     background-color: #f5f5f5;
  88.     }
  89.     .titreproduit{
  90.     font-weight:bold;
  91.     font-size:16px
  92.     }
  93.     
  94.     .card-body {
  95.         background-color:#33333D !important;
  96.         
  97.     }
  98.     .corps{
  99.     background-color:#33333D !important;
  100.     }
  101.     .titreproduit {
  102.         font-weight: bold;
  103.         font-size: 16px;
  104.         color:var(--color-primary);
  105.     }
  106.     
  107.     .acat{
  108.         font-size: 14px;
  109.         color:#039be5
  110.     }
  111.     body{ background-color: #434250; }
  112.      .title {
  113.         font-size: 18px;
  114.         margin-bottom: 6px;
  115.         overflow: hidden;
  116.         display: -webkit-box;
  117.         -webkit-line-clamp: 2;
  118.         -webkit-box-orient: vertical;
  119.         font-weight: bold;
  120.     }
  121.     .nav-tabs {
  122.         border-bottom: 1px solid #039be5;
  123.         background-color: #33333D !important;
  124.     }
  125.   </style>
  126. {% endblock %}
  127. {% block body %}
  128.     <section class="row pagetitle taille" style="background-image:url({{asset('assets/site/images/background/page-title3.jpg')}}); display:none">
  129.         <div class="col-md-12 auto-container">
  130.             <span class="auto-text" > {{ title }} </span><br> 
  131.             <span >Services online d’Informations financières sur le Marché Africain. Des données fiables et sur mesures 
  132.             sur les marchés Actions, Obligataires et sur les Fonds Opcvm..</span>
  133.         </div>
  134.     </section>
  135.     <section class="row">
  136.         <div class="col-md-12">
  137.             
  138.             <p>
  139.                 <nav>     
  140.                     <div class="nav nav-tabs" id="nav-tab" role="tablist">
  141.                         <a class=" nav-item nav-link acat active "  href="{{ path('site_videos') }}" > Toutes les vidéos</a>
  142.                         {% for categorie in categories %}
  143.                         {% if categorie.libelle != "Voeux" %}
  144.                         <a class=" nav-item nav-link acat "  href="{{path('site_videos_cat',{'id':categorie.id })}}" >{{categorie.libelle}}</a>
  145.                         {% endif %}
  146.                         {% endfor %}
  147.                     </div>
  148.                 </nav>
  149.             </p>
  150.         </div>
  151.     </section>
  152.     
  153.     <form class="row">
  154.         <div class="col-md-12" style=" margin-top: 20px; margin-bottom: 20px;">
  155.             <!-- Search form -->
  156.             <input type="text" name="q" id="q" class="form-control" placeholder="Rechercher" />
  157.             <button type="submit">search</button>
  158.         </div>
  159.     </form>
  160.     <section class="row" style="margin-top:12px ;margin-right:0px; margin-left: 0px; " >
  161.         <div class="col-md-12">
  162.             <div class="block block-primary">
  163.                 <h3 class="block-title"><span>Les Vidéos</span></h3>
  164.             </div>
  165.         </div>
  166.         <div class="row" style="display: flex;
  167.         flex-wrap: wrap; margin-bottom:10px;padding-left:10px;padding-right:10px; margin-right:-5px; margin-left: -8px; width:fit-content">
  168.     
  169.             {% for video in ALL|sort|reverse %}
  170.             {% if video.categorie.libelle != "Voeux" %}
  171.             <div class="col-md-4 card" style="background-color: inherit;padding: -5px; margin:0px;">
  172.                 
  173.                     <a href="{{path('site_videos_show',{'id':video.id,'cat':video.categorie.id})}}" >
  174.                         <div class="of-video-img-1">
  175.                             <i class="fa fa-play-circle fa-4x"></i>
  176.                             <img src="{{ asset("uploads/videos/thumbnails/#{video.getThumbnail()}") }}" class="card-img-top" alt="...">
  177.                         </div>
  178.                         <div class="card-body">
  179.                             <h6 class="card-title title" title="{{video.libelle}}"><a href="{{path('site_videos_show',{'id':video.id,'cat':video.categorie.id})}}">{{video.libelle}}</a></h6>
  180.                             
  181.                         </div>
  182.                     </a>
  183.                
  184.             </div>
  185.             
  186.             {% endif %}
  187.             {% endfor %}
  188.         </div>
  189.         <div class="col-md-12">
  190.             <div class="d-flex justify-content-center">
  191.                 {{ knp_pagination_render(ALL) }}
  192.             </div>
  193.         </div>
  194.         <br>
  195.     </section>
  196.     
  197. {% endblock %}
  198. {% block scripts %}
  199.     <script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
  200. {% endblock %}