{% extends 'pages/base.html.twig' %}
{% block title %}{{ entry.title }} | {{ parent() }}{% endblock %}
{% block meta_og_title %}{{ entry.title }} | {{ parent() }}{% endblock %}
{% block meta_twitter_title %}{{ entry.title }} | {{ parent() }}{% endblock %}
{% block meta_description %}{{ entry.descriptionForHtml }}{% endblock %}
{% block meta_og_description %}{{ entry.descriptionForHtml }}{% endblock %}
{% block body %}
<div class="pg_breadcrumb-wrapper">
<div class="pg_breadcrumb">
<a class="breadcrumb-item c-breadcrumb-group-list__item--white" href="{{ path('top') }}">
TOP
</a><span class="c-breadcrumb-group-list__slash--white">/</span>
<a class="breadcrumb-item c-breadcrumb-group-list__item--white" href="{{ path('news_index')}}">
お知らせ
</a><span class="c-breadcrumb-group-list__slash--white">/</span>
{#<a class="breadcrumb-item" href="{{ path('news_index', {Category: entry.category.id}) }}">
{{ entry.category }}
</a>#}
<a class="breadcrumb-item c-breadcrumb-group-list__item" href="{{ path('news_detail', {id: entry.id}) }}">
{{ entry.title }}
</a>
</div>
</div>
<main id="news_detail">
{% include "pages/news/_hero.html.twig" %}
{% include "pages/news/_detail.html.twig" %}
{% include "components/cms/_footer.html.twig" %}
</main>
{% endblock %}