templates/areas/quote/includes/quote.html.twig line 1

Open in your IDE?
  1. {#
  2. project: Pimcore - Schutzverband Nuernberg Rostbratwuerste
  3. User: erikb
  4. Year: 2023
  5. #}
  6. <div class="area quote">
  7.     <div class="quote__ornament quote__ornament--top">
  8.         {{ get_svg_inline('ornament-6-top') }}
  9.     </div>
  10.     <div class="quote__content">
  11.         {% if editmode or not pimcore_input('headline').isEmpty() %}
  12.             <div class="quote__title quote__title--headline">{{ pimcore_input('headline', { placeholder: 'brick.quote.placeholder.headline'|trans({}, 'admin') }) }}</div>
  13.         {% endif %}
  14.         <div class="quote__text">
  15.             {{
  16.             pimcore_textarea('text', {
  17.                 nl2br: true,
  18.                 placeholder: 'brick.quote.placeholder.text'|trans({}, 'admin')
  19.             })
  20.             }}
  21.         </div>
  22.     </div>
  23.     <div class="quote__ornament quote__ornament--bottom">
  24.         {{ get_svg_inline('ornament-6-bottom') }}
  25.     </div>
  26.     {% if editmode or not pimcore_input('subline').isEmpty() %}
  27.         <div class="quote__title quote__title--subline">{{ pimcore_input('subline', { placeholder: 'brick.quote.placeholder.subline'|trans({}, 'admin') }) }}</div>
  28.     {% endif %}
  29. </div>