templates/news/news_teaser.html.twig line 1

Open in your IDE?
  1. {# @var news \Pimcore\Model\DataObject\News #}
  2. {% set detailLink = app_news_detaillink(news) %}
  3. <div class="teaser card custom-standard-card mb-4 shadow-sm">
  4.     <a href="{{ detailLink }}" class="text-decoration-none text-dark">
  5.     {% if news.gallery.items %}
  6.         {% set image = news.gallery.current %}
  7.         {% if image.image %}
  8.             {{ image.image.thumbnail('standardTeaser').html({imgAttributes: {class: 'img-fluid'}}) | raw }}
  9.         {% endif %}
  10.     {% endif %}
  11.         <div class="card-body">
  12.             <h4 class="card-title pricing-card-title text-uppercase">{{ news.title }}</h4>
  13.             <p class="card-text">
  14.                 {{ news.shortText }}
  15.             </p>
  16.             <p>
  17.                 <a href="{{ detailLink }}" class="btn btn-lg btn-secondary">{{ 'general.read-more' | trans }}</a>
  18.             </p>
  19.         </div>
  20.     </a>
  21. </div>