app/Resources/views/includes/content/embed.html.twig line 1

Open in your IDE?
  1. <div class="article-content flex flex-col items-center mid-section-pb sm-text-card">
  2.     <div class="container">
  3.         {% if item.title is not empty %}
  4.             <h2 class="pb-[10px]">{{ item.title }}</h2>
  5.         {% endif %}
  6.         <div class="flex justify-center">
  7.             {{ item.html|raw }}
  8.         </div>
  9.         {% if item.source is not empty %}
  10.             <div class="credit-media pt-[10px]">zdroj: {{ item.source|get_source_html|raw }}</div>
  11.         {% endif %}
  12.     </div>
  13. </div>