templates/snippets/standard-teaser.html.twig line 1

Open in your IDE?
  1. {% set suffix = suffix ?? '' %}
  2. {% if suffix is empty and editmode %}
  3.   <style type="text/css">
  4.     .teaser {
  5.       max-width: 250px;
  6.     }
  7.     .teaser img {
  8.       max-width: 100%;
  9.     }
  10.   </style>
  11. {% endif %}
  12. <div class="teaser custom-standard-card mb-4 {% if not editmode %}col-lg-4 col-md-12{% endif %}">
  13.   {% if not editmode and not pimcore_link('link' ~ suffix).isEmpty %}
  14.   <a href="{{ pimcore_link('link' ~ suffix).href }}">
  15.     {% endif %}
  16.     {{ pimcore_image('image' ~ suffix, {
  17.       thumbnail: 'puzzle_square'
  18.     }) }}
  19.     {% if not editmode and not pimcore_link('link' ~ suffix).isEmpty %}
  20.   </a>
  21.   {% endif %}
  22.   <div class="card-body">
  23.     <h4 class="card-title pricing-card-title">{{ pimcore_input('title' ~ suffix) }}</h4>
  24.     <p class="card-text">
  25.       {{ pimcore_wysiwyg('text' ~ suffix, {
  26.         height: 100,
  27.         enterMode: 2,
  28.       }) }}
  29.     </p>
  30.     <p>
  31.       {{ pimcore_link('link' ~ suffix, {
  32.         class: 'btn btn-lg btn-secondary'
  33.       }) }}
  34.     </p>
  35.   </div>
  36. </div>