templates/refonte/default/searchV.html.twig line 1

Open in your IDE?
  1. {% extends 'refonte/base.html.twig' %}
  2. {% block title %}({{ total }}) Journals Found - {% endblock %}
  3. {% block meta_title %}({{ total }}) Journals Found - {% endblock %}
  4. {% block body %}
  5.     <style>
  6.         .IN-widget{
  7.             position: relative;
  8.             bottom: 2px;
  9.         }
  10.         .IN-widget button{
  11.             height: 21px !important;
  12.         }
  13.         .fb-share-button{
  14.             height: 21px;
  15.             width: 55px;
  16.             display: inline-block;
  17.             margin: 5px;
  18.         }
  19.         ol.carousel-indicators li {
  20.             background: rgba(225, 227, 221, 0.54);
  21.         }
  22.         ol.carousel-indicators li.active {
  23.             background: #2ebae6;
  24.         }
  25.     </style>
  26.     {# Load Facebook SDK for JavaScript #}
  27.     <div id="fb-root"></div>
  28.     <script>
  29.         (function(d, s, id) {
  30.             var js, fjs = d.getElementsByTagName(s)[0];
  31.             if (d.getElementById(id)) return;
  32.             js = d.createElement(s); js.id = id;
  33.             js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.0";
  34.             fjs.parentNode.insertBefore(js, fjs);
  35.         }(document, 'script', 'facebook-jssdk'));
  36.     </script>
  37.     {# style="background-color: #f6f6f6" #}
  38.     <div class="container-fluid mr-0 ml-0 pr-0 pl-0" style="margin-top: -1%">
  39.         <div class=" {% if adv is defined  %}vard-advanced{% else %}card-form{% endif %}" style="background: transparent;border: none">
  40.             <div class="d-flex flex-column mt-5">
  41.                 <div class="">
  42.                     {% include 'refonte/pages/parts/search-form.html.twig' %}
  43.                 </div>
  44.             </div>
  45.         </div>
  46.     </div>
  47.     <div class="mx-0">
  48.         <div class="container mx-auto px-2 " id="show-item-container">
  49.             {% if results is defined %}
  50.                 <div class="search-journals-result search-advanced-journals-result" >
  51.                     <div class="d-flex flex-column justify-content-center" >
  52.                         <h3 class="text-center text-uppercase">
  53.                             <b>{{ total }} journal(s) matched your search</b>
  54.                         </h3>
  55.                         {% if search is defined %}
  56.                             <h6 class="text-center font-italic">Journal(s) with :<b>{{ search }}</b> </h6>
  57.                         {% endif %}
  58.                         {# <div class="container mx-auto my-2 d-flex justify-content-center align-items-center">
  59.                         {% include '_includes/pubs/fluid-banner.html.twig' %}
  60.                     </div>#}
  61.                         {% if total > 0 %}
  62.                             {#                        <div style="overflow-x: scroll !important;">#}
  63.                             <div>
  64.                                 {% include 'refonte/_includes/journal-datatable.html.twig' with {'journals': results} %}
  65.                             </div>
  66.                         {% else %}
  67.                             <div class="table-responsive">
  68.                                 <table class="table mb-5">
  69.                                     <thead>
  70.                                     <tr>
  71.                                         <th scope="col">No results found ! Adjust your filter and retry</th>
  72.                                     </tr>
  73.                                     </thead>
  74.                                 </table>
  75.                             </div>
  76.                         {% endif %}
  77.                     </div>
  78.                     <div class="container mx-auto" >
  79.                         {# <div class="row pub-banner" >
  80.                         #}{#<div class="col-12 text-center d-desktop ad-banner">
  81.                             {% include '_includes/pubs/auto-format-google.html.twig' %}
  82.                         </div>#}{#
  83.                         </div>#}
  84.                     </div>
  85.                 </div>
  86.             {% endif %}
  87.         </div>
  88.     </div>
  89. {% endblock %}
  90. {% block vignetteAd %}
  91.     <div class="fixed-pub-area w-100"></div>
  92.     {#
  93.     {% include '_includes/pubs/custom-vignette-ad.html.twig' %}
  94.     #}
  95. {% endblock %}
  96. {% block javascripts %}
  97.     {{ parent() }}
  98.     <script>
  99.         /**
  100.          *  RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
  101.          *  LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
  102.         /*
  103.         var disqus_config = function () {
  104.         this.page.url = PAGE_URL;  // Replace PAGE_URL with your page's canonical URL variable
  105.         this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
  106.         };
  107.         */
  108.         (function() { // DON'T EDIT BELOW THIS LINE
  109.             var d = document, s = d.createElement('script');
  110.             s.src = 'https://guidejournal.disqus.com/embed.js';
  111.             s.setAttribute('data-timestamp', +new Date());
  112.             (d.head || d.body).appendChild(s);
  113.         })();
  114.     </script>
  115.     <script type='text/javascript' src='https://platform-api.sharethis.com/js/sharethis.js#property=5e1ef322734b56001269b6b7&product=inline-share-buttons' async='async'></script>
  116.     <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
  117. {% endblock %}