templates/Magazine/DetailBlocks/BlogArticleAuthor.html.twig line 1

Open in your IDE?
  1. {% if block.articleAuthor %}
  2.     <section class="content-block container-md container js-fade-in {{ styleModifier | default(null) }} ">
  3.         <div class="container container-sm">
  4.             {{ include('Includes/title-block.html.twig', {
  5.                 title: 'magazine.about.author' | trans,
  6.                 isCentered: block.titleCentered
  7.             }) }}
  8.         </div>
  9.         <div class="row justify-content-center">
  10.             <div class="col-md-auto">
  11.                 {% do jsConfig().add('lazyImg', true) %}
  12.                 <div class="embed-responsive-1by1 embed-responsive author-info__media-wrapper">
  13.                     {% if block.articleAuthor.image %}
  14.                         {{ block.articleAuthor.image.getThumbnail('author-info').getHtml({ imgAttributes: {
  15.                             class: 'js-lazy-img embed-responsive-item',
  16.                         }, 'lowQualityPlaceholder' : true}) | raw }}
  17.                     {% endif %}
  18.                 </div>
  19.                 <div class="author-info__name">
  20.                     {% if block.articleAuthor.name %}
  21.                         {{ block.articleAuthor.name }}
  22.                     {% endif %}
  23.                 </div>
  24.             </div>
  25.             <div class="col-md-5 d-flex align-items-center text-center text-md-left">
  26.                 <div>
  27.                     <div class="author-info__quote">
  28.                         {% if block.articleAuthor.quote %}
  29.                             „{{ block.articleAuthor.quote }}“
  30.                         {% endif %}
  31.                     </div>
  32.                     <a href="{{ linkGenerator().generate(block.articleAuthor) }}" class="btn btn-outline-primary mt-md-4 mt-3">
  33.                         {{ 'magazine.author.Mehr Erfahren'|trans }}
  34.                     </a>
  35.                 </div>
  36.             </div>
  37.         </div>
  38.     </section>
  39. {% endif %}