templates/pages/activity/filter.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}絞り込み | アクティビティ |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
  3. {% block meta_og_title %}絞り込み | アクティビティ |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
  4. {% block meta_twitter_title %}絞り込み | アクティビティ |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
  5. {% block meta_description %}
  6. {{ parent() }}
  7. お好みの条件でアクティビティを絞り込みいただけます。
  8. {% endblock %}
  9. {% block meta_og_description %}
  10. {{ parent() }}
  11. お好みの条件でアクティビティを絞り込みいただけます。
  12. {% endblock %}
  13. {% block extraHeader %}
  14. <link rel="canonical" content="{{ absolute_url(path('activity_filter')) }}">
  15. {% endblock %}
  16. {% block body %}
  17. <main id="workspace">
  18.   <section class="guide">
  19.     <div class="guideContainer">
  20.       <div class="guideContainer__breadcrumbs">
  21.         <a href="{{ path('top') }}">TOP</a>
  22.         <span class="guideContainerBreadcrumbs__arrow"></span>
  23.         <a href="{{ path('activity_index') }}">{{ 'activity.index.title'|trans }}</a>
  24.         <span class="guideContainerBreadcrumbs__arrow"></span>
  25.         <div>{{ 'common.filter.title'|trans }}</div>
  26.       </div>
  27.     </div>
  28.   </section>
  29.   <form action="{{ path('activity_index') }}">
  30.     <section class="search filterPage">
  31.       <div class="searchInfoContainer">
  32.         <div class="searchInfoContainer__headline">
  33.           <h1>{{ 'common.filter.criteria_refine'|trans }}</h1>
  34.         </div>
  35.       </div>
  36.       {% if filter.Area.choice %}<input type="hidden" name="area" value="{{ filter.Area.choice }}">{% endif%}
  37.       {% if filter.Category.choice %}<input type="hidden" name="category" value="{{ filter.Category.choice }}">{% endif%}
  38.       {% include "components/entry/index/_filter_element_target.html.twig" with {
  39.         title: 'common.filter.group_target'|trans,
  40.         filter: filter.Target,
  41.         name: "target[]"
  42.       } %}
  43.       {% include "components/entry/index/_filter_element_multiple.html.twig" with {
  44.         title: 'common.filter.group_equipment'|trans,
  45.         filter: filter.Service,
  46.         name: "service[]"
  47.       } %}
  48.       {% include "components/entry/index/_filter_element_multiple.html.twig" with {
  49.         title: 'common.filter.group_fastidiousness'|trans,
  50.         filter: filter.Tag,
  51.         name: "tag[]",
  52.         last: true
  53.       } %}
  54.       {% include "components/entry/index/_filter_button_container.html.twig" with {
  55.         back_path: path('activity_index', query)
  56.       } %}
  57.     </section>
  58.   </form>
  59. </main>
  60. {% endblock %}