{% extends 'base.html.twig' %}
{% block title %}絞り込み | アクティビティ |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_og_title %}絞り込み | アクティビティ |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_twitter_title %}絞り込み | アクティビティ |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_description %}
{{ parent() }}
お好みの条件でアクティビティを絞り込みいただけます。
{% endblock %}
{% block meta_og_description %}
{{ parent() }}
お好みの条件でアクティビティを絞り込みいただけます。
{% endblock %}
{% block extraHeader %}
<link rel="canonical" content="{{ absolute_url(path('activity_filter')) }}">
{% endblock %}
{% block body %}
<main id="workspace">
<section class="guide">
<div class="guideContainer">
<div class="guideContainer__breadcrumbs">
<a href="{{ path('top') }}">TOP</a>
<span class="guideContainerBreadcrumbs__arrow"></span>
<a href="{{ path('activity_index') }}">{{ 'activity.index.title'|trans }}</a>
<span class="guideContainerBreadcrumbs__arrow"></span>
<div>{{ 'common.filter.title'|trans }}</div>
</div>
</div>
</section>
<form action="{{ path('activity_index') }}">
<section class="search filterPage">
<div class="searchInfoContainer">
<div class="searchInfoContainer__headline">
<h1>{{ 'common.filter.criteria_refine'|trans }}</h1>
</div>
</div>
{% if filter.Area.choice %}<input type="hidden" name="area" value="{{ filter.Area.choice }}">{% endif%}
{% if filter.Category.choice %}<input type="hidden" name="category" value="{{ filter.Category.choice }}">{% endif%}
{% include "components/entry/index/_filter_element_target.html.twig" with {
title: 'common.filter.group_target'|trans,
filter: filter.Target,
name: "target[]"
} %}
{% include "components/entry/index/_filter_element_multiple.html.twig" with {
title: 'common.filter.group_equipment'|trans,
filter: filter.Service,
name: "service[]"
} %}
{% include "components/entry/index/_filter_element_multiple.html.twig" with {
title: 'common.filter.group_fastidiousness'|trans,
filter: filter.Tag,
name: "tag[]",
last: true
} %}
{% include "components/entry/index/_filter_button_container.html.twig" with {
back_path: path('activity_index', query)
} %}
</section>
</form>
</main>
{% endblock %}