templates/pages/news/_detail.html.twig line 1

Open in your IDE?
  1. <section class="pg_news-detail_item_wrap">
  2.   <div class="pg_news-detail_item">
  3.     <span class="pg_news-detail_item_category">{{ entry.category }}</span>
  4.     <h1 class="pg_news-detail_item_title">
  5.       {{ entry.title }}
  6.     </h1>
  7.     <time class="pg_news-detail_item_time">
  8.       {{ entry.entryDate|date('Y.m.d') }}
  9.     </time>
  10.     {% if entry.mainImage %}
  11.     <figure class="c-cms-image">
  12.       <img src="{{ entry.getImageUrl }}" alt="{{ entry.title }}">
  13.     </figure>
  14.     {% endif %}
  15.     {% if entry.content %}
  16.     <div class="c-cms-content">
  17.       {{ entry.content|raw }}
  18.     </div>
  19.     {% endif %}
  20.     {% for child in entry.children %}
  21.     {% if child.haveContent %}
  22.       {% if child.headline %}
  23.         <h2 class="c-cms-headline">
  24.           {{ child.headline }}
  25.         </h2>
  26.       {% endif %}
  27.       {% if child.image %}
  28.         <figure class="c-cms-child-image">
  29.           <img src="{{ child.getImageUrl }}" alt="{{ child.headline }}">
  30.         </figure>
  31.       {% endif %}
  32.       {% if child.youtubeId %}
  33.         <div class="c_cms-youtube">
  34.           <iframe
  35.             width="560"
  36.             height="315"
  37.             src="https://www.youtube.com/embed/{{ child.youtubeId }}?controls=0"
  38.             allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
  39.             allowfullscreen
  40.             class="c_cms-youtube__iframe"
  41.           ></iframe>
  42.         </div>
  43.       {% endif %}
  44.       {% if child.content %}
  45.         <div class="c-cms-content">
  46.           {{ child.content|raw }}
  47.         </div>
  48.       {% endif %}
  49.     {% endif %}
  50.     {% endfor %}
  51.   </div>
  52. </section>