{% extends 'base.html.twig' %}
{% block title %}{{ entry.titleLocale(app.request.locale) }} | 宿泊施設 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_og_title %}{{ entry.titleLocale(app.request.locale) }} | 宿泊施設 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_twitter_title %}{{ entry.titleLocale(app.request.locale) }} | 宿泊施設 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_description %}{{ parent() }}{% endblock %}
{% block meta_og_description %}{{ parent() }}{% endblock %}
{% block body %}
<main id="modelplan_contents">
<div class="wrapper">
<nav class="nav">
<ol class="nav-BreadcrumbTrail">
<li><a href="{{ path('top') }}">{{ 'common.top'|trans|raw }}</a></li>
<li><a href="{{ path('facility_index') }}">{{ 'facility.index.title'|trans }}</a></li>
<li>{{ entry.trans('title') }}</li>
</ol>
</nav>
{% include "components/entry/detail/_heading.html.twig" %}
</div>
{% include "components/entry/detail/_main_img.html.twig" %}
{% include "components/entry/detail/_summary.html.twig" %}
{% include "pages/modelplan/_keyparson.html.twig" with {
modelPlan: entry.getSubEntity,
parson: entry.getSubEntity.parson
} %}
<div class="wrapper">
{% include "components/entry/detail/_pickup_contents.html.twig" with {
entry: entry,
pickup: entry.pickupContents,
images: entry.pickupContentsImages
} %}
<section class="schedule">
{% include "components/entry/detail/_facility.html.twig" with {
entry: entry,
facility: entry.getSubEntity,
geolocation: entry.geolocation
} %}
</section>
<section style="margin-top: -100px;" class="report">
{% include "components/entry/detail/_entry_reports.html.twig" with {
title: 'modelplan.report.title'|trans({'%category%': entry.categoryLocale(app.request.locale)})
} %}
{% if recommend %}
<div class="report-Other">
<h5>{{ 'common.more_recommend'|trans }}</h5>
<div class="report-Other__inner">
{% for item in recommend %}
{% include "components/entry/detail/_recommend_card.html.twig" %}
{% endfor %}
<span class="planBox"></span>
</div>
{% include "components/entry/detail/_back.html.twig" with {
url: path('facility_index', query)
} %}
</div>
{% endif %}
</section>
</div>
</main>
{% endblock %}