<section class="pg_news-detail_item_wrap">
<div class="pg_news-detail_item">
<span class="pg_news-detail_item_category">{{ entry.category }}</span>
<h1 class="pg_news-detail_item_title">
{{ entry.title }}
</h1>
<time class="pg_news-detail_item_time">
{{ entry.entryDate|date('Y.m.d') }}
</time>
{% if entry.mainImage %}
<figure class="c-cms-image">
<img src="{{ entry.getImageUrl }}" alt="{{ entry.title }}">
</figure>
{% endif %}
{% if entry.content %}
<div class="c-cms-content">
{{ entry.content|raw }}
</div>
{% endif %}
{% for child in entry.children %}
{% if child.haveContent %}
{% if child.headline %}
<h2 class="c-cms-headline">
{{ child.headline }}
</h2>
{% endif %}
{% if child.image %}
<figure class="c-cms-child-image">
<img src="{{ child.getImageUrl }}" alt="{{ child.headline }}">
</figure>
{% endif %}
{% if child.youtubeId %}
<div class="c_cms-youtube">
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/{{ child.youtubeId }}?controls=0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
class="c_cms-youtube__iframe"
></iframe>
</div>
{% endif %}
{% if child.content %}
<div class="c-cms-content">
{{ child.content|raw }}
</div>
{% endif %}
{% endif %}
{% endfor %}
</div>
</section>