src/Trinity/BlogBundle/Resources/views/default/blog.html.twig line 1

Open in your IDE?
  1. {% trans_default_domain 'blog' %}
  2. {% if file_exists('../templates/override/blog/blog.html.twig') %}
  3.     {% include 'override/blog/blog.html.twig' %}
  4. {% else %}
  5.   {% trans_default_domain 'blog' %}
  6.   {% if config.uri is defined and config.uri is not empty %}
  7.     {% set baseUrl_detail = path('homepage') ~ config.uri %}
  8.   {% else %}
  9.     {% set baseUrl_detail = path(app.request.attributes.get('_route')) %}
  10.   {% endif %}
  11.   {% if config.uri_overview is defined and config.uri_overview is not empty %}
  12.     {% set baseUrl = path('homepage') ~ config.uri_overview %}
  13.   {% else %}
  14.     {% set baseUrl = path(app.request.attributes.get('_route')) %}
  15.   {% endif %}
  16.   <div class="blog">
  17.     <div class="row">
  18.       {% for Entry in entries %}
  19.         {% if Entry.isexternal and Entry.externalurl is not empty %}
  20.           {% set detailUrl = Entry.externalurl %}
  21.         {% else %}
  22.           {% set detailUrl = baseUrl_detail ~ '/' ~ Entry.id ~ '/' ~ Entry.getDefaultSlug %}
  23.         {% endif %}
  24.         {% set shareUrl = url(app.request.attributes.get('_route')) ~ '/' ~ Entry.id ~ '/' ~ Entry.getDefaultSlug %}
  25.         {% if Entry.slug and Entry.isexternal == false %}
  26.           {% set detailUrl = baseUrl_detail ~ '/' ~ Entry.category[0].category ~ '/' ~ Entry.getSlug %}
  27.           {% set shareUrl = url(app.request.attributes.get('_route')) ~ '/' ~ Entry.getSlug %}
  28.         {% endif %}
  29.         <div class="col-12 col-md-6 col-lg-4">
  30.           <div class="item {{config['minimal'] is defined and config['minimal'] == '1' ? 'minimal' : 'card'}}">
  31.             <a href="{{detailUrl}}" {% if Entry.isexternal and Entry.externalurl is not empty %}target="_blank"{% endif %}>
  32.               <div class="heightfix">
  33.                 {% if config['minimal'] is not defined or config['minimal'] == '0' %}
  34.                   <div class="thumb">
  35.                     <div class="lcp image">
  36.                       {% if Entry.media.first %}
  37.                         {% if Entry.media.first.hasBlurred %}
  38.                           <picture>
  39.                             {% if Entry.media.first.hasWebp() %}
  40.                               <source srcset="/{{Entry.media.first.getBlurredWebpPath('small')}}" type="image/webp">
  41.                             {% endif %}
  42.                             <source srcset="/{{Entry.media.first.getBlurredWebPath('small')}}" type="{{Entry.media.first.mime}}">
  43.                             <img class="lq" alt="{{Entry.media.first.description_alt}}" src="/{{Entry.media.first.getBlurredWebPath('small')}}" type="{{Entry.media.first.mime}}" loading="lazy" width="{{Entry.media.first.width}}" height="{{Entry.media.first.height}}">
  44.                           </picture>
  45.                         {% endif %}
  46.                         <picture>
  47.                           {% if Entry.media.first.hasWebp() %}
  48.                             <source srcset="/{{Entry.media.first.getWebpPath('medium')}}" type="image/webp">
  49.                           {% endif %}
  50.                           <source srcset="/{{Entry.media.first.getWebPath('medium')}}" type="{{ Entry.media.first.mime }}">
  51.                         <img class="hq" alt="{{Entry.media.first.description_alt}}" src="/{{Entry.media.first.getWebPath('medium')}}" type="{{Entry.media.first.mime}}" loading="lazy" width="{{Entry.media.first.width}}" height="{{Entry.media.first.height}}" onload="this.style.opacity=1{% if Entry.media.first.hasBlurred %};this.closest('.lcp').getElementsByClassName('lq')[0].style.opacity=0;{% endif %}" style="opacity: 0;">
  52.                         </picture>
  53.                       {% elseif Entry.image %}
  54.                         {% if Entry.image.hasBlurred %}
  55.                           <picture>
  56.                             {% if Entry.image.hasWebp() %}
  57.                               <source srcset="/{{Entry.image.getBlurredWebpPath}}" type="image/webp">
  58.                             {% endif %}
  59.                             <source srcset="/{{Entry.image.getBlurredWebPath}}" type="{{Entry.image.mime}}">
  60.                             <img class="lq" alt="{{Entry.image.description_alt}}" src="/{{Entry.image.getBlurredWebPath}}" type="{{Entry.image.mime}}" loading="lazy" width="{{Entry.image.width}}" height="{{Entry.image.height}}">
  61.                           </picture>
  62.                         {% endif %}
  63.                         <picture>
  64.                           {% if Entry.image.hasWebp() %}
  65.                             <source srcset="/{{Entry.image.getWebpPath}}" type="image/webp">
  66.                           {% endif %}
  67.                           <source srcset="/{{Entry.image.getWebPath}}" type="{{ Entry.image.mime }}">
  68.                         <img class="hq" alt="{{Entry.image.description_alt}}" src="/{{Entry.image.getWebPath}}" type="{{Entry.image.mime}}" loading="lazy" width="{{Entry.image.width}}" height="{{Entry.image.height}}" onload="this.style.opacity=1{% if Entry.image.hasBlurred %};this.closest('.lcp').getElementsByClassName('lq')[0].style.opacity=0;{% endif %}" style="opacity: 0;">
  69.                         </picture>
  70.                       {% endif %}
  71.                     </div>
  72.                   </div>
  73.                   <div class="content">
  74.                     <h3>
  75.                       {{Entry.label}}
  76.                     </h3>
  77.                     {% if config['nodate'] is not defined %}
  78.                       <span class="date">
  79.                         {{Entry.datePublish|timeago}}
  80.                       </span>
  81.                     {% endif %}
  82.                   </div>
  83.                 {% else %}
  84.                   <div>
  85.                     {% if config['nodate'] is not defined %}
  86.                       <div class="date">{{Entry.datePublish|timeago}}</div>
  87.                     {% endif %}
  88.                     <a href="{{detailUrl}}">{{Entry.label}}</a>
  89.                   </div>
  90.                 {% endif %}
  91.               </div>
  92.             </a>
  93.             {# {% if config['sharinglist'] is defined and config['sharinglist'] is not empty %}
  94.               <div class="share">
  95.                 <span class="label">{{'Delen:'|trans}}</span>
  96.                 <!-- Sharingbutton Facebook -->
  97.                 <a class="resp-sharing-button__link" href="https://facebook.com/sharer/sharer.php?u={{shareUrl}}" target="_blank" title="Facebook" aria-label="">
  98.                   <div class="resp-sharing-button resp-sharing-button--facebook resp-sharing-button--small">
  99.                     <div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
  100.                       <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path d="M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z"/></svg>
  101.                     </div>
  102.                   </div>
  103.                 </a>
  104.                 <!-- Sharingbutton Twitter -->
  105.                 <a class="resp-sharing-button__link" href="https://twitter.com/intent/tweet/?text={{Entry.label}}&amp;url={{shareUrl}}" target="_blank" title="Twitter" aria-label="">
  106.                   <div class="resp-sharing-button resp-sharing-button--twitter resp-sharing-button--small">
  107.                     <div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
  108.                       <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path
  109.                         d="M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z"/></svg>
  110.                     </div>
  111.                   </div>
  112.                 </a>
  113.                 <!-- Sharingbutton E-Mail -->
  114.                 <a class="resp-sharing-button__link" href="mailto:?subject={{Entry.label}}&amp;body={{shareUrl}}" target="_self" title="E-Mail" aria-label="">
  115.                   <div class="resp-sharing-button resp-sharing-button--email resp-sharing-button--small">
  116.                     <div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
  117.                       <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path
  118.                         d="M22 4H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.25 14.43l-3.5 2c-.08.05-.17.07-.25.07-.17 0-.34-.1-.43-.25-.14-.24-.06-.55.18-.68l3.5-2c.24-.14.55-.06.68.18.14.24.06.55-.18.68zm4.75.07c-.1 0-.2-.03-.27-.08l-8.5-5.5c-.23-.15-.3-.46-.15-.7.15-.22.46-.3.7-.14L12 13.4l8.23-5.32c.23-.15.54-.08.7.15.14.23.07.54-.16.7l-8.5 5.5c-.08.04-.17.07-.27.07zm8.93 1.75c-.1.16-.26.25-.43.25-.08 0-.17-.02-.25-.07l-3.5-2c-.24-.13-.32-.44-.18-.68s.44-.32.68-.18l3.5 2c.24.13.32.44.18.68z"/></svg>
  119.                     </div>
  120.                   </div>
  121.                 </a>
  122.                 <!-- Sharingbutton WhatsApp -->
  123.                 <a class="resp-sharing-button__link" href="whatsapp://send?text={{Entry.label}}%20{{shareUrl}}" target="_blank" title="WhatsApp" aria-label="">
  124.                   <div class="resp-sharing-button resp-sharing-button--whatsapp resp-sharing-button--small">
  125.                     <div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
  126.                       <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path
  127.                         d="M20.1 3.9C17.9 1.7 15 .5 12 .5 5.8.5.7 5.6.7 11.9c0 2 .5 3.9 1.5 5.6L.6 23.4l6-1.6c1.6.9 3.5 1.3 5.4 1.3 6.3 0 11.4-5.1 11.4-11.4-.1-2.8-1.2-5.7-3.3-7.8zM12 21.4c-1.7 0-3.3-.5-4.8-1.3l-.4-.2-3.5 1 1-3.4L4 17c-1-1.5-1.4-3.2-1.4-5.1 0-5.2 4.2-9.4 9.4-9.4 2.5 0 4.9 1 6.7 2.8 1.8 1.8 2.8 4.2 2.8 6.7-.1 5.2-4.3 9.4-9.5 9.4zm5.1-7.1c-.3-.1-1.7-.9-1.9-1-.3-.1-.5-.1-.7.1-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1s-1.2-.5-2.3-1.4c-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6s.3-.3.4-.5c.2-.1.3-.3.4-.5.1-.2 0-.4 0-.5C10 9 9.3 7.6 9 7c-.1-.4-.4-.3-.5-.3h-.6s-.4.1-.7.3c-.3.3-1 1-1 2.4s1 2.8 1.1 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.3-.3-.4-.6-.5z"/></svg>
  128.                     </div>
  129.                   </div>
  130.                 </a>
  131.                 <!-- Sharingbutton Telegram -->
  132.                 <a class="resp-sharing-button__link" href="https://telegram.me/share/url?text={{Entry.label}}&amp;url={{shareUrl}}" target="_blank" title="Telegram" aria-label="">
  133.                   <div class="resp-sharing-button resp-sharing-button--telegram resp-sharing-button--small">
  134.                     <div aria-hidden="true" class="resp-sharing-button__icon resp-sharing-button__icon--solid">
  135.                       <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24"><path
  136.                         d="M.707 8.475C.275 8.64 0 9.508 0 9.508s.284.867.718 1.03l5.09 1.897 1.986 6.38a1.102 1.102 0 0 0 1.75.527l2.96-2.41a.405.405 0 0 1 .494-.013l5.34 3.87a1.1 1.1 0 0 0 1.046.135 1.1 1.1 0 0 0 .682-.803l3.91-18.795A1.102 1.102 0 0 0 22.5.075L.706 8.475z"/></svg>
  137.                     </div>
  138.                   </div>
  139.                 </a>
  140.               </div>
  141.             {% endif %} #}
  142.           </div>
  143.         </div>
  144.       {% endfor %}
  145.     </div>
  146.     {% if config['show_all'] is defined and config['show_all'] is not empty %}
  147.     <div class="more-news text-center">
  148.       <a href="{{baseUrl}}" class="btn">{{'Alle berichten tonen'|trans}}</a>
  149.     </div>
  150.     {% endif %}
  151.   {% if config['pagination'] is defined and config['pagination'] is not empty %}
  152.     {% include "@Cms/pagination_bootstrap.html.twig" with {
  153.       currentPage: page,
  154.       lastPage: pages,
  155.       showAlwaysFirstAndLast: true
  156.     } only %}
  157.   {% endif %}
  158. </div>
  159. {% endif %}